using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// Computes the hash for the input data.
// Token: 0x02000410 RID: 1040
[Token(Token = "0x2000410")]
[ComVisible(true)]
public abstract class SHA512 : HashAlgorithm
{
/// Initializes a new instance of .
// Token: 0x0600231C RID: 8988 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600231C")]
[Address(RVA = "0x2DFFEA0", Offset = "0x2DFECA0", VA = "0x182DFFEA0")]
protected SHA512()
{
}
/// Creates an instance of the default implementation of .
/// A new instance of .
/// The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.
// 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;
}
/// Creates an instance of a specified implementation of .
/// The name of the specific implementation of to be used.
/// A new instance of using the specified implementation.
/// The algorithm described by the parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.
// 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;
}
}
}