using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// Computes the hash for the input data.
// Token: 0x0200040E RID: 1038
[Token(Token = "0x200040E")]
[ComVisible(true)]
public abstract class SHA384 : HashAlgorithm
{
/// Initializes a new instance of .
// Token: 0x06002308 RID: 8968 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002308")]
[Address(RVA = "0x2DFEA80", Offset = "0x2DFD880", VA = "0x182DFEA80")]
protected SHA384()
{
}
/// 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: 0x06002309 RID: 8969 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002309")]
[Address(RVA = "0x2DFE8F0", Offset = "0x2DFD6F0", VA = "0x182DFE8F0")]
public new static SHA384 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: 0x0600230A RID: 8970 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600230A")]
[Address(RVA = "0x2DFE9F0", Offset = "0x2DFD7F0", VA = "0x182DFE9F0")]
public new static SHA384 Create(string hashName)
{
return null;
}
}
}