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