Good Afternoon All!
I am working on an application that will interact with a web service
and exhange encripted data using RSA encryption. (only the data in
the SAOP message is encrypted, not the message its self.)
I am able to generate a key and use it to encrypt data, but I am not
able to store the key for reuse. Does anyone have a reccomendation of
how I would do this? I will need to sore my keys and the public key
of the server that I will be exchanging data with.
Thanks
Doug
rossum - 01 Apr 2007 10:01 GMT
>Good Afternoon All!
>
[quoted text clipped - 9 lines]
>Thanks
>Doug
java.security.KeyStore would seem to be relevant to your problem.
rossum