Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x0200042A RID: 1066
[Token(Token = "0x200042A")]
[ComVisible(true)]
public abstract class SHA384 : HashAlgorithm
{
/// <summary>Initializes a new instance of <see cref="T:System.Security.Cryptography.SHA384" />.</summary>
// Token: 0x06002514 RID: 9492 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002514")]
[Address(RVA = "0x1032F40", Offset = "0x1031F40", VA = "0x181032F40")]
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: 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;
}
/// <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: 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;
}
}
}