12 references to RSAEncryptionPaddingMode
mscorlib (10)
system\security\cryptography\RSAEncryptionPadding.cs (10)
14private static readonly RSAEncryptionPadding s_pkcs1 = new RSAEncryptionPadding(RSAEncryptionPaddingMode.Pkcs1, default(HashAlgorithmName)); 21/// <see cref="RSAEncryptionPaddingMode.Pkcs1"/> mode. 26/// <see cref="RSAEncryptionPaddingMode.Oaep"/> mode with SHA1 hash algorithm. 45private RSAEncryptionPaddingMode _mode; 48private RSAEncryptionPadding(RSAEncryptionPaddingMode mode, HashAlgorithmName oaepHashAlgorithm) 55/// Creates a new instance instance representing <see cref="RSAEncryptionPaddingMode.Oaep"/> 65return new RSAEncryptionPadding(RSAEncryptionPaddingMode.Oaep, hashAlgorithm); 71public RSAEncryptionPaddingMode Mode 77/// Gets the padding mode to use in conjunction with <see cref="RSAEncryptionPaddingMode.Oaep"/>. 80/// If <see cref="Mode"/> is not <see cref="RSAEncryptionPaddingMode.Oaep"/>, then <see cref="HashAlgorithmName.Name" /> will be null.
System.Core (2)
System\Security\Cryptography\RsaCng.cs (2)
418else if (padding.Mode == RSAEncryptionPaddingMode.Oaep) 445else if (padding.Mode == RSAEncryptionPaddingMode.Oaep)