2 overrides of Encrypt
mscorlib (1)
system\security\cryptography\rsacryptoserviceprovider.cs (1)
571public override byte[] Encrypt(byte[] data, RSAEncryptionPadding padding) {
System.Core (1)
System\Security\Cryptography\RsaCng.cs (1)
430public override byte[] Encrypt(byte[] data, RSAEncryptionPadding padding)
2 references to Encrypt
mscorlib (2)
system\security\cryptography\rsaoaepkeyexchangeformatter.cs (1)
77return _rsaKey.Encrypt(rgbData, RSAEncryptionPadding.OaepSHA1);
system\security\cryptography\rsapkcs1keyexchangeformatter.cs (1)
63rgbKeyEx = _rsaKey.Encrypt(rgbData, RSAEncryptionPadding.Pkcs1);