12 references to RSAEncryptionPaddingMode
mscorlib (10)
system\security\cryptography\RSAEncryptionPadding.cs (10)
14
private 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.
45
private
RSAEncryptionPaddingMode
_mode;
48
private RSAEncryptionPadding(
RSAEncryptionPaddingMode
mode, HashAlgorithmName oaepHashAlgorithm)
55
/// Creates a new instance instance representing <see cref="
RSAEncryptionPaddingMode
.Oaep"/>
65
return new RSAEncryptionPadding(
RSAEncryptionPaddingMode
.Oaep, hashAlgorithm);
71
public
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)
418
else if (padding.Mode ==
RSAEncryptionPaddingMode
.Oaep)
445
else if (padding.Mode ==
RSAEncryptionPaddingMode
.Oaep)