I am curious since RSA is not a block cipher, yet the Encrypt() method can take an arbitrary amount of data to encrypt.
Does it use AES+RSA hybrid encryption? Or does it simply use RSA (incorrectly) as a block cipher?
|
I am curious since RSA is not a block cipher, yet the Encrypt() method can take an arbitrary amount of data to encrypt. Does it use AES+RSA hybrid encryption? Or does it simply use RSA (incorrectly) as a block cipher? |
|||
|
According to MSDN it can't
It even has a |
|||||
|
No it does not. If this is what you're looking for then you have to do it yourself or check my old blog entry on the subject.
No it does not. It will apply a padding (either PKCS#1 1.5 or OAEP) to the supplied Here's how it looks like (from Mono's BCL source code).
|
|||
|
|