using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// Computes the hash for the input data.
// Token: 0x0200042C RID: 1068
[Token(Token = "0x200042C")]
[ComVisible(true)]
public abstract class SHA512 : HashAlgorithm
{
/// Initializes a new instance of .
// Token: 0x06002528 RID: 9512 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002528")]
[Address(RVA = "0x10342D0", Offset = "0x10332D0", VA = "0x1810342D0")]
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: 0x06002529 RID: 9513 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002529")]
[Address(RVA = "0x10341D0", Offset = "0x10331D0", VA = "0x1810341D0")]
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: 0x0600252A RID: 9514 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600252A")]
[Address(RVA = "0x1034140", Offset = "0x1033140", VA = "0x181034140")]
public new static SHA512 Create(string hashName)
{
return null;
}
}
}