3 overrides of EncryptValue
mscorlib (1)
system\security\cryptography\rsacryptoserviceprovider.cs (1)
447public override byte[] EncryptValue(byte[] rgb) {
System.Core (1)
System\Security\Cryptography\RsaCng.cs (1)
548public override byte[] EncryptValue(byte[] rgb) { throw new NotSupportedException(SR.NotSupported_Method); }
System.IdentityModel.Selectors (1)
infocard\client\System\IdentityModel\Selectors\InfoCardRSACryptoProvider.cs (1)
70public override byte[] EncryptValue(byte[] rgb)
3 references to EncryptValue
mscorlib (3)
system\security\cryptography\rsapkcs1keyexchangeformatter.cs (1)
93rgbKeyEx = _rsaKey.EncryptValue(rgbInput);
system\security\cryptography\rsapkcs1signaturedeformatter.cs (1)
90return Utils.CompareBigIntArrays(_rsaKey.EncryptValue(rgbSignature), pad);
system\security\cryptography\utils.cs (1)
851return rsa.EncryptValue(pad);