Function rsa::internals::decrypt [−][src]
pub fn decrypt<R: Rng>(
rng: Option<&mut R>,
priv_key: &RSAPrivateKey,
c: &BigUint
) -> Result<BigUint>
Expand description
Performs raw RSA decryption with no padding, resulting in a plaintext BigUint
.
Peforms RSA blinding if an Rng
is passed.