using System;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// Specifies the padding mode and parameters to use with RSA signature creation or verification operations.
// Token: 0x020003CB RID: 971
[Token(Token = "0x20003CB")]
public sealed class RSASignaturePadding : IEquatable
{
// Token: 0x060020ED RID: 8429 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60020ED")]
[Address(RVA = "0x445B90", Offset = "0x444990", VA = "0x180445B90")]
private RSASignaturePadding(RSASignaturePaddingMode mode)
{
}
/// Gets an object that uses the PKCS #1 v1.5 padding mode.
/// An object that uses the padding mode.
// Token: 0x17000477 RID: 1143
// (get) Token: 0x060020EE RID: 8430 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x17000477")]
public static RSASignaturePadding Pkcs1
{
[Token(Token = "0x60020EE")]
[Address(RVA = "0x2DF38A0", Offset = "0x2DF26A0", VA = "0x182DF38A0")]
get
{
return null;
}
}
/// Gets an object that uses PSS padding mode.
/// An object that uses the padding mode with the number of salt bytes equal to the size of the hash.
// Token: 0x17000478 RID: 1144
// (get) Token: 0x060020EF RID: 8431 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x17000478")]
public static RSASignaturePadding Pss
{
[Token(Token = "0x60020EF")]
[Address(RVA = "0x2DF3900", Offset = "0x2DF2700", VA = "0x182DF3900")]
get
{
return null;
}
}
/// Gets the padding mode of this instance.
/// The padding mode (either or ) of this instance.
// Token: 0x17000479 RID: 1145
// (get) Token: 0x060020F0 RID: 8432 RVA: 0x00014598 File Offset: 0x00012798
[Token(Token = "0x17000479")]
public RSASignaturePaddingMode Mode
{
[Token(Token = "0x60020F0")]
[Address(RVA = "0x3FA560", Offset = "0x3F9360", VA = "0x1803FA560")]
get
{
return RSASignaturePaddingMode.Pkcs1;
}
}
/// Returns the hash code for this instance.
/// The hash code for this instance.
// Token: 0x060020F1 RID: 8433 RVA: 0x000145B0 File Offset: 0x000127B0
[Token(Token = "0x60020F1")]
[Address(RVA = "0x2DF3740", Offset = "0x2DF2540", VA = "0x182DF3740", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// Returns a value that indicates whether this instance is equal to a specified object.
/// The object to compare with the current instance.
///
/// if the specified object is equal to the current object; otherwise, .
// Token: 0x060020F2 RID: 8434 RVA: 0x000145C8 File Offset: 0x000127C8
[Token(Token = "0x60020F2")]
[Address(RVA = "0x2DF36E0", Offset = "0x2DF24E0", VA = "0x182DF36E0", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// Returns a value that indicates whether this instance is equal to a specified object.
/// The object to compare with the current instance.
///
/// if the specified object is equal to the current object; otherwise, .
// Token: 0x060020F3 RID: 8435 RVA: 0x000145E0 File Offset: 0x000127E0
[Token(Token = "0x60020F3")]
[Address(RVA = "0x2DF3620", Offset = "0x2DF2420", VA = "0x182DF3620", Slot = "4")]
public bool Equals(RSASignaturePadding other)
{
return default(bool);
}
/// Indicates whether two specified objects are equal.
/// The first object to compare.
/// The second object to compare.
///
/// if and are equal; otherwise, .
// Token: 0x060020F4 RID: 8436 RVA: 0x000145F8 File Offset: 0x000127F8
[Token(Token = "0x60020F4")]
[Address(RVA = "0x2DF3960", Offset = "0x2DF2760", VA = "0x182DF3960")]
public static bool operator ==(RSASignaturePadding left, RSASignaturePadding right)
{
return default(bool);
}
/// Indicates whether two specified objects are unequal.
/// The first object to compare.
/// The second object to compare.
///
/// if and are unequal; otherwise, .
// Token: 0x060020F5 RID: 8437 RVA: 0x00014610 File Offset: 0x00012810
[Token(Token = "0x60020F5")]
[Address(RVA = "0x2DF3980", Offset = "0x2DF2780", VA = "0x182DF3980")]
public static bool operator !=(RSASignaturePadding left, RSASignaturePadding right)
{
return default(bool);
}
/// Returns the string representation of the current instance.
/// The string representation of the current object.
// Token: 0x060020F6 RID: 8438 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60020F6")]
[Address(RVA = "0x2DF3760", Offset = "0x2DF2560", VA = "0x182DF3760", Slot = "3")]
public override string ToString()
{
return null;
}
// Token: 0x060020F8 RID: 8440 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60020F8")]
[Address(RVA = "0x2DF3870", Offset = "0x2DF2670", VA = "0x182DF3870")]
internal RSASignaturePadding()
{
}
// Token: 0x040012E9 RID: 4841
[Token(Token = "0x40012E9")]
private static readonly RSASignaturePadding s_pkcs1;
// Token: 0x040012EA RID: 4842
[Token(Token = "0x40012EA")]
private static readonly RSASignaturePadding s_pss;
// Token: 0x040012EB RID: 4843
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40012EB")]
private readonly RSASignaturePaddingMode _mode;
}
}