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: 0x02000426 RID: 1062
|
|
[Token(Token = "0x2000426")]
|
|
[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: 0x060024F4 RID: 9460 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60024F4")]
|
|
[Address(RVA = "0x1020B90", Offset = "0x101FB90", VA = "0x181020B90")]
|
|
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: 0x060024F5 RID: 9461 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x60024F5")]
|
|
[Address(RVA = "0x10307C0", Offset = "0x102F7C0", VA = "0x1810307C0")]
|
|
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: 0x060024F6 RID: 9462 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x60024F6")]
|
|
[Address(RVA = "0x1030730", Offset = "0x102F730", VA = "0x181030730")]
|
|
public new static SHA1 Create(string hashName)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|