2 instantiations of PKCS1MaskGenerationMethod
mscorlib (2)
system\security\cryptography\rsaoaepkeyexchangedeformatter.cs (1)
49
return Utils.RsaOaepDecrypt(_rsaKey, SHA1.Create(), new
PKCS1MaskGenerationMethod
(), rgbData);
system\security\cryptography\rsaoaepkeyexchangeformatter.cs (1)
79
return Utils.RsaOaepEncrypt(_rsaKey, SHA1.Create(), new
PKCS1MaskGenerationMethod
(), RandomNumberGenerator.Create(), rgbData);
2 references to PKCS1MaskGenerationMethod
mscorlib (2)
system\security\cryptography\utils.cs (2)
806
internal static byte[] RsaOaepEncrypt (RSA rsa, HashAlgorithm hash,
PKCS1MaskGenerationMethod
mgf, RandomNumberGenerator rng, byte[] data) {
855
internal static byte[] RsaOaepDecrypt (RSA rsa, HashAlgorithm hash,
PKCS1MaskGenerationMethod
mgf, byte[] encryptedData) {