RE: Encrypt header value. - TypeConverter

2022-09-20 Thread Wilken Marci J
* @return The rotated text. */ private static String rotate(String data) { if (data == null) { return null; } . -Original Message- From: Jeremy Ross Sent: Saturday, September 10, 2

Re: Encrypt header value.

2022-09-10 Thread Jeremy Ross
Yep. On Sat, Sep 10, 2022 at 3:39 PM ski n wrote: > @Jeremy Don't you mean Jasypt: > > https://camel.apache.org/components/3.18.x/others/jasypt.html > > On Sat, Sep 10, 2022 at 7:12 PM Jeremy Ross > wrote: > > > Have you looked at the jsypt component? With it, you can store your > > password en

Re: Encrypt header value.

2022-09-10 Thread ski n
@Jeremy Don't you mean Jasypt: https://camel.apache.org/components/3.18.x/others/jasypt.html On Sat, Sep 10, 2022 at 7:12 PM Jeremy Ross wrote: > Have you looked at the jsypt component? With it, you can store your > password encrypted, then access it using property placeholder syntax: > > ftps:

Re: Encrypt header value.

2022-09-10 Thread Jeremy Ross
Have you looked at the jsypt component? With it, you can store your password encrypted, then access it using property placeholder syntax: ftps://?password={{my_ftp_password}} Of course, if your file system security is sufficient, you can skip the jsypt part. Everything else would be the same. O