using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// Computes the hash for the input data.
// Token: 0x0200042A RID: 1066
[Token(Token = "0x200042A")]
[ComVisible(true)]
public abstract class SHA384 : HashAlgorithm
{
/// Initializes a new instance of .
// Token: 0x06002514 RID: 9492 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002514")]
[Address(RVA = "0x1032F40", Offset = "0x1031F40", VA = "0x181032F40")]
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: 0x06002515 RID: 9493 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002515")]
[Address(RVA = "0x1032DB0", Offset = "0x1031DB0", VA = "0x181032DB0")]
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: 0x06002516 RID: 9494 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002516")]
[Address(RVA = "0x1032EB0", Offset = "0x1031EB0", VA = "0x181032EB0")]
public new static SHA384 Create(string hashName)
{
return null;
}
}
}