17 references to Oaep
System.Security.Cryptography (17)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RSACng.EncryptDecrypt.cs (4)
69else if (padding.Mode == RSAEncryptionPaddingMode.Oaep) 92case RSAEncryptionPaddingMode.Oaep: 151else if (padding.Mode == RSAEncryptionPaddingMode.Oaep) 174case RSAEncryptionPaddingMode.Oaep:
System\Security\Cryptography\RSABCrypt.cs (2)
201case RSAEncryptionPaddingMode.Oaep: 245case RSAEncryptionPaddingMode.Oaep:
System\Security\Cryptography\RSAEncryptionPadding.cs (11)
19/// <see cref="RSAEncryptionPaddingMode.Oaep"/> mode with SHA1 hash algorithm. 24/// <see cref="RSAEncryptionPaddingMode.Oaep"/> mode with SHA256 hash algorithm. 29/// <see cref="RSAEncryptionPaddingMode.Oaep"/> mode with SHA384 hash algorithm. 34/// <see cref="RSAEncryptionPaddingMode.Oaep"/> mode with SHA512 hash algorithm. 39/// <see cref="RSAEncryptionPaddingMode.Oaep"/> mode with SHA3-256 hash algorithm. 44/// <see cref="RSAEncryptionPaddingMode.Oaep"/> mode with SHA3-384 hash algorithm. 49/// <see cref="RSAEncryptionPaddingMode.Oaep"/> mode with SHA3-512 hash algorithm. 63/// Creates a new instance representing <see cref="RSAEncryptionPaddingMode.Oaep"/> 70return new RSAEncryptionPadding(RSAEncryptionPaddingMode.Oaep, hashAlgorithm); 82/// Gets the padding mode to use in conjunction with <see cref="RSAEncryptionPaddingMode.Oaep"/>. 85/// If <see cref="Mode"/> is not <see cref="RSAEncryptionPaddingMode.Oaep"/>, then <see cref="HashAlgorithmName.Name" /> will be null.