Encryption between Java and ASP.Net
-
Hello, I've only dabled a bit in Java, I work almost exclusively with .Net. That being said, I am looking to do encrypt a string from a java application (this will be done by another developer), decrypt it in .Net and send an XML response to the the java app. Is there a universal method for encryption in Java that would allow us to use the same encryption key/method? I know how to encrypt/decrypt in .Net, I just need to know if there is a standard that is used by both frameworks?
-
Hello, I've only dabled a bit in Java, I work almost exclusively with .Net. That being said, I am looking to do encrypt a string from a java application (this will be done by another developer), decrypt it in .Net and send an XML response to the the java app. Is there a universal method for encryption in Java that would allow us to use the same encryption key/method? I know how to encrypt/decrypt in .Net, I just need to know if there is a standard that is used by both frameworks?
FYI - (in case anyone is interested) I just used standard DES encryption which worked out great for my situation. As long as the same rgb/rgbIV keys are used on both ends, the entire process was very painless.