Files
2026-04-10 22:50:51 +02:00

168 lines
6.8 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// <summary>Contains information about the properties of a digital signature.</summary>
// Token: 0x02000412 RID: 1042
[Token(Token = "0x2000412")]
[ComVisible(true)]
public class SignatureDescription
{
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.SignatureDescription" /> class.</summary>
// Token: 0x06002330 RID: 9008 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002330")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
public SignatureDescription()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.SignatureDescription" /> class from the specified <see cref="T:System.Security.SecurityElement" />.</summary>
/// <param name="el">The <see cref="T:System.Security.SecurityElement" /> from which to get the algorithms for the signature description.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="el" /> parameter is <see langword="null" />.</exception>
// Token: 0x06002331 RID: 9009 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002331")]
[Address(RVA = "0x2E015A0", Offset = "0x2E003A0", VA = "0x182E015A0")]
public SignatureDescription(SecurityElement el)
{
}
/// <summary>Gets or sets the key algorithm for the signature description.</summary>
/// <returns>The key algorithm for the signature description.</returns>
// Token: 0x170004D4 RID: 1236
// (get) Token: 0x06002332 RID: 9010 RVA: 0x00002082 File Offset: 0x00000282
// (set) Token: 0x06002333 RID: 9011 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004D4")]
public string KeyAlgorithm
{
[Token(Token = "0x6002332")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
[Token(Token = "0x6002333")]
[Address(RVA = "0x3F7200", Offset = "0x3F6000", VA = "0x1803F7200")]
set
{
}
}
/// <summary>Gets or sets the digest algorithm for the signature description.</summary>
/// <returns>The digest algorithm for the signature description.</returns>
// Token: 0x170004D5 RID: 1237
// (get) Token: 0x06002334 RID: 9012 RVA: 0x00002082 File Offset: 0x00000282
// (set) Token: 0x06002335 RID: 9013 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004D5")]
public string DigestAlgorithm
{
[Token(Token = "0x6002334")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
get
{
return null;
}
[Token(Token = "0x6002335")]
[Address(RVA = "0x3F7210", Offset = "0x3F6010", VA = "0x1803F7210")]
set
{
}
}
/// <summary>Gets or sets the formatter algorithm for the signature description.</summary>
/// <returns>The formatter algorithm for the signature description.</returns>
// Token: 0x170004D6 RID: 1238
// (get) Token: 0x06002336 RID: 9014 RVA: 0x00002082 File Offset: 0x00000282
// (set) Token: 0x06002337 RID: 9015 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004D6")]
public string FormatterAlgorithm
{
[Token(Token = "0x6002336")]
[Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400")]
get
{
return null;
}
[Token(Token = "0x6002337")]
[Address(RVA = "0x460F90", Offset = "0x45FD90", VA = "0x180460F90")]
set
{
}
}
/// <summary>Gets or sets the deformatter algorithm for the signature description.</summary>
/// <returns>The deformatter algorithm for the signature description.</returns>
// Token: 0x170004D7 RID: 1239
// (get) Token: 0x06002338 RID: 9016 RVA: 0x00002082 File Offset: 0x00000282
// (set) Token: 0x06002339 RID: 9017 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170004D7")]
public string DeformatterAlgorithm
{
[Token(Token = "0x6002338")]
[Address(RVA = "0x3F63E0", Offset = "0x3F51E0", VA = "0x1803F63E0")]
get
{
return null;
}
[Token(Token = "0x6002339")]
[Address(RVA = "0x409C60", Offset = "0x408A60", VA = "0x180409C60")]
set
{
}
}
/// <summary>Creates an <see cref="T:System.Security.Cryptography.AsymmetricSignatureDeformatter" /> instance with the specified key using the <see cref="P:System.Security.Cryptography.SignatureDescription.DeformatterAlgorithm" /> property.</summary>
/// <param name="key">The key to use in the <see cref="T:System.Security.Cryptography.AsymmetricSignatureDeformatter" />.</param>
/// <returns>The newly created <see cref="T:System.Security.Cryptography.AsymmetricSignatureDeformatter" /> instance.</returns>
// Token: 0x0600233A RID: 9018 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600233A")]
[Address(RVA = "0x2E013B0", Offset = "0x2E001B0", VA = "0x182E013B0", Slot = "4")]
public virtual AsymmetricSignatureDeformatter CreateDeformatter(AsymmetricAlgorithm key)
{
return null;
}
/// <summary>Creates an <see cref="T:System.Security.Cryptography.AsymmetricSignatureFormatter" /> instance with the specified key using the <see cref="P:System.Security.Cryptography.SignatureDescription.FormatterAlgorithm" /> property.</summary>
/// <param name="key">The key to use in the <see cref="T:System.Security.Cryptography.AsymmetricSignatureFormatter" />.</param>
/// <returns>The newly created <see cref="T:System.Security.Cryptography.AsymmetricSignatureFormatter" /> instance.</returns>
// Token: 0x0600233B RID: 9019 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600233B")]
[Address(RVA = "0x2E014F0", Offset = "0x2E002F0", VA = "0x182E014F0", Slot = "5")]
public virtual AsymmetricSignatureFormatter CreateFormatter(AsymmetricAlgorithm key)
{
return null;
}
/// <summary>Creates a <see cref="T:System.Security.Cryptography.HashAlgorithm" /> instance using the <see cref="P:System.Security.Cryptography.SignatureDescription.DigestAlgorithm" /> property.</summary>
/// <returns>The newly created <see cref="T:System.Security.Cryptography.HashAlgorithm" /> instance.</returns>
// Token: 0x0600233C RID: 9020 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600233C")]
[Address(RVA = "0x2E01460", Offset = "0x2E00260", VA = "0x182E01460", Slot = "6")]
public virtual HashAlgorithm CreateDigest()
{
return null;
}
// Token: 0x040013D8 RID: 5080
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x40013D8")]
private string _strKey;
// Token: 0x040013D9 RID: 5081
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x40013D9")]
private string _strDigest;
// Token: 0x040013DA RID: 5082
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
[Token(Token = "0x40013DA")]
private string _strFormatter;
// Token: 0x040013DB RID: 5083
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
[Token(Token = "0x40013DB")]
private string _strDeformatter;
}
}