44 lines
1.9 KiB
C#
44 lines
1.9 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Security.Cryptography
|
|
{
|
|
/// <summary>Computes the <see cref="T:System.Security.Cryptography.SHA1" /> hash for the input data.</summary>
|
|
// Token: 0x0200040A RID: 1034
|
|
[Token(Token = "0x200040A")]
|
|
[ComVisible(true)]
|
|
public abstract class SHA1 : HashAlgorithm
|
|
{
|
|
/// <summary>Initializes a new instance of <see cref="T:System.Security.Cryptography.SHA1" />.</summary>
|
|
/// <exception cref="T:System.InvalidOperationException">The policy on this object is not compliant with the FIPS algorithm.</exception>
|
|
// Token: 0x060022E8 RID: 8936 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60022E8")]
|
|
[Address(RVA = "0x2DFC3A0", Offset = "0x2DFB1A0", VA = "0x182DFC3A0")]
|
|
protected SHA1()
|
|
{
|
|
}
|
|
|
|
/// <summary>Creates an instance of the default implementation of <see cref="T:System.Security.Cryptography.SHA1" />.</summary>
|
|
/// <returns>A new instance of <see cref="T:System.Security.Cryptography.SHA1" />.</returns>
|
|
// Token: 0x060022E9 RID: 8937 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x60022E9")]
|
|
[Address(RVA = "0x2DFC2B0", Offset = "0x2DFB0B0", VA = "0x182DFC2B0")]
|
|
public new static SHA1 Create()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Creates an instance of the specified implementation of <see cref="T:System.Security.Cryptography.SHA1" />.</summary>
|
|
/// <param name="hashName">The name of the specific implementation of <see cref="T:System.Security.Cryptography.SHA1" /> to be used.</param>
|
|
/// <returns>A new instance of <see cref="T:System.Security.Cryptography.SHA1" /> using the specified implementation.</returns>
|
|
// Token: 0x060022EA RID: 8938 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x60022EA")]
|
|
[Address(RVA = "0x2DFC220", Offset = "0x2DFB020", VA = "0x182DFC220")]
|
|
public new static SHA1 Create(string hashName)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|