45 lines
2.2 KiB
C#
45 lines
2.2 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Security.Cryptography
|
|
{
|
|
/// <summary>Computes the <see cref="T:System.Security.Cryptography.SHA512" /> hash for the input data.</summary>
|
|
// Token: 0x02000410 RID: 1040
|
|
[Token(Token = "0x2000410")]
|
|
[ComVisible(true)]
|
|
public abstract class SHA512 : HashAlgorithm
|
|
{
|
|
/// <summary>Initializes a new instance of <see cref="T:System.Security.Cryptography.SHA512" />.</summary>
|
|
// Token: 0x0600231C RID: 8988 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600231C")]
|
|
[Address(RVA = "0x2DFFEA0", Offset = "0x2DFECA0", VA = "0x182DFFEA0")]
|
|
protected SHA512()
|
|
{
|
|
}
|
|
|
|
/// <summary>Creates an instance of the default implementation of <see cref="T:System.Security.Cryptography.SHA512" />.</summary>
|
|
/// <returns>A new instance of <see cref="T:System.Security.Cryptography.SHA512" />.</returns>
|
|
/// <exception cref="T:System.Reflection.TargetInvocationException">The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.</exception>
|
|
// Token: 0x0600231D RID: 8989 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x600231D")]
|
|
[Address(RVA = "0x2DFFDA0", Offset = "0x2DFEBA0", VA = "0x182DFFDA0")]
|
|
public new static SHA512 Create()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Creates an instance of a specified implementation of <see cref="T:System.Security.Cryptography.SHA512" />.</summary>
|
|
/// <param name="hashName">The name of the specific implementation of <see cref="T:System.Security.Cryptography.SHA512" /> to be used.</param>
|
|
/// <returns>A new instance of <see cref="T:System.Security.Cryptography.SHA512" /> using the specified implementation.</returns>
|
|
/// <exception cref="T:System.Reflection.TargetInvocationException">The algorithm described by the <paramref name="hashName" /> parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.</exception>
|
|
// Token: 0x0600231E RID: 8990 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x600231E")]
|
|
[Address(RVA = "0x2DFFD10", Offset = "0x2DFEB10", VA = "0x182DFFD10")]
|
|
public new static SHA512 Create(string hashName)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|