Files
2026-04-10 22:50:51 +02:00

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.SHA384" /> hash for the input data.</summary>
// Token: 0x0200040E RID: 1038
[Token(Token = "0x200040E")]
[ComVisible(true)]
public abstract class SHA384 : HashAlgorithm
{
/// <summary>Initializes a new instance of <see cref="T:System.Security.Cryptography.SHA384" />.</summary>
// Token: 0x06002308 RID: 8968 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002308")]
[Address(RVA = "0x2DFEA80", Offset = "0x2DFD880", VA = "0x182DFEA80")]
protected SHA384()
{
}
/// <summary>Creates an instance of the default implementation of <see cref="T:System.Security.Cryptography.SHA384" />.</summary>
/// <returns>A new instance of <see cref="T:System.Security.Cryptography.SHA384" />.</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: 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;
}
/// <summary>Creates an instance of a specified implementation of <see cref="T:System.Security.Cryptography.SHA384" />.</summary>
/// <param name="hashName">The name of the specific implementation of <see cref="T:System.Security.Cryptography.SHA384" /> to be used.</param>
/// <returns>A new instance of <see cref="T:System.Security.Cryptography.SHA384" /> 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: 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;
}
}
}