Hello :)
I need to make a C# application compatible with a Java application.
The Java application uses a Cipher.getInstance("RSA/ECB/nopadding");
initializer to make the cipher ECB and no-padding.
However, in C#, you have 2 options for padding: OAEP padding or PKCS#1 v1.5 padding. I need a no-padding version, or else I'm definitely stuck in my project.
I don't think there is any way to make the C#.NET RSACryptoServiceProvider use a no-padding scheme. However, is there a RSA custom class or library that allows this precision?
P.S.: Is C#.NET's RSACryptoServiceProvider ECB by default? I can't find documentation on this.