15 references to Oaep
System.Security.Cryptography (15)
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (4)
192if (padding.Mode == RSAEncryptionPaddingMode.Oaep) 259if (padding.Mode == RSAEncryptionPaddingMode.Oaep) 871if (padding.Mode != RSAEncryptionPaddingMode.Oaep && 882if (padding.Mode == 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.