Hi,
Sorry for late reply.
Well, not really since first step of connection is to establish encryption and then authenticate the the user so passwords never sent in a clear text.
If you want avoid keeping password in memory after connection what you can do is to use constructor which accepts byte[] for password.
Then what you can do is one connection is established you can either delete this array or simply nullify it.
Hope it helps.
Thanks,
Oleg
Sorry for late reply.
Well, not really since first step of connection is to establish encryption and then authenticate the the user so passwords never sent in a clear text.
If you want avoid keeping password in memory after connection what you can do is to use constructor which accepts byte[] for password.
Then what you can do is one connection is established you can either delete this array or simply nullify it.
Hope it helps.
Thanks,
Oleg