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
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?