Hi, I'm using RSA encryption on some data as detailed in this MSDN article:
http://msdn.microsoft.com/en-us/library/ms229919(VS.85).aspx
I belive this implementation creates the key during the encryption and stores it in memory which is why it works for me on my local computer. I need to deploy it to the server, however.
I've generated the public and private key and am trying to figure out how to tell my code what key to use for the decryption. The file will be passed to my web service as encrypted xml. I would think it would be an rsa parameter, but I can't seem to nail it down.
Many thanks for any help!You can assign the key from a file with this:
Dim strPubKey As String = ""
strPubKey = File.ReadAllText(PubKeyFile)
rsaKey.FromXmlString(strPubKey)
http://msdn.microsoft.com/en-us/library/ms229919(VS.85).aspx
I belive this implementation creates the key during the encryption and stores it in memory which is why it works for me on my local computer. I need to deploy it to the server, however.
I've generated the public and private key and am trying to figure out how to tell my code what key to use for the decryption. The file will be passed to my web service as encrypted xml. I would think it would be an rsa parameter, but I can't seem to nail it down.
Many thanks for any help!You can assign the key from a file with this:
Dim strPubKey As String = ""
strPubKey = File.ReadAllText(PubKeyFile)
rsaKey.FromXmlString(strPubKey)