vote up 0 vote down star

I'm busy trying to port Java code that looks like this

        Cipher rsa = Cipher.getInstance("RSA/ECB/nopadding");
		rsa.init(Cipher.DECRYPT_MODE, RSAPrivateKey);
		decryptedData = rsa.doFinal(data, 0, 128);

to C#, but as it seems the RSACryptoServiceProvider, forces you to either use OEAP or PKCS1 padding. I know no padding isn't secure, but in this case Im working with a closed source client, so I can't do anything about that. Is there any way around this padding issue?

flag

1 Answer

vote up 0 vote down check

You might want to get the code from BouncyCastle, http://www.bouncycastle.org/csharp/, and modify the code from the link below, and ensure that it can use the encryption that you list above.

http://www.java2s.com/Code/Java/Security/Whatisinbouncycastlebouncycastle.htm

link|flag
I'll try that, thanks. – DeadlyCreampuff Oct 12 at 3:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.