System.Security.Cryptography.RSAEncryptionPadding
namespace System.Security.Cryptography
{
public sealed class RSAEncryptionPadding : IEquatable<RSAEncryptionPadding>
{
public RSAEncryptionPaddingMode Mode { get; }
public HashAlgorithmName OaepHashAlgorithm { get; }
public static RSAEncryptionPadding OaepSHA1 { get; }
public static RSAEncryptionPadding OaepSHA256 { get; }
public static RSAEncryptionPadding OaepSHA384 { get; }
public static RSAEncryptionPadding OaepSHA512 { get; }
public static RSAEncryptionPadding Pkcs1 { get; }
public static RSAEncryptionPadding CreateOaep(HashAlgorithmName hashAlgorithm);
public bool Equals(RSAEncryptionPadding other);
public static bool operator ==(RSAEncryptionPadding left, RSAEncryptionPadding right);
public static bool operator !=(RSAEncryptionPadding left, RSAEncryptionPadding right);
}
}