* @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
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
@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:
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