using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// Computes the hash for the input data.
// Token: 0x0200040A RID: 1034
[Token(Token = "0x200040A")]
[ComVisible(true)]
public abstract class SHA1 : HashAlgorithm
{
/// Initializes a new instance of .
/// The policy on this object is not compliant with the FIPS algorithm.
// Token: 0x060022E8 RID: 8936 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60022E8")]
[Address(RVA = "0x2DFC3A0", Offset = "0x2DFB1A0", VA = "0x182DFC3A0")]
protected SHA1()
{
}
/// Creates an instance of the default implementation of .
/// A new instance of .
// 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;
}
/// Creates an instance of the specified implementation of .
/// The name of the specific implementation of to be used.
/// A new instance of using the specified implementation.
// 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;
}
}
}