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
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.
Using OpenSSL.NET will make no-padding available. However, I can't make it work (See this question if you want to help me make it work)
Well, the fact is that if you have no padding, you must meet the block size exactly. Of course it's quite odd to normally reach the block size exactly, hence you pad.
You can always pad it yourself, with some chars that you then remove on the other side.
What, exactly, is the reason you need to do this?