17 references to Oaep
System.Security.Cryptography (17)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RSACng.EncryptDecrypt.cs (4)
69
else if (padding.Mode == RSAEncryptionPaddingMode.
Oaep
)
92
case RSAEncryptionPaddingMode.
Oaep
:
151
else if (padding.Mode == RSAEncryptionPaddingMode.
Oaep
)
174
case RSAEncryptionPaddingMode.
Oaep
:
System\Security\Cryptography\RSABCrypt.cs (2)
201
case RSAEncryptionPaddingMode.
Oaep
:
245
case 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
"/>
70
return 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.