encrypte password for connecting to repository
One answer
how strong does the encryption need to be? if light, you could mime64 encode it and use the encoded chars in the configuration.. easy to decode
if u need more, then you'll have to find one of the encryption methods that support round trip (encrypt and decrypt)...
this is Java after all so those services might be available..
Sam
if u need more, then you'll have to find one of the encryption methods that support round trip (encrypt and decrypt)...
this is Java after all so those services might be available..
Sam