I need to make a C# application compatible with a Java application.
The Java application uses a Cipher.getInstance(\"RSA/ECB/nopadding\"); initializer to ma
Cipher.getInstance(\"RSA/ECB/nopadding\");
Performing RSA without padding is almost certainly going to leave you with a broken (insecure) cryptosystem. If C# won't let you do it, then that's a point in C#'s favour. Get the Java side fixed.