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.SHA512" /> hash for the input data.</summary>
// Token: 0x0200042C RID: 1068
[Token(Token = "0x200042C")]
[ComVisible(true)]
public abstract class SHA512 : HashAlgorithm
{
/// <summary>Initializes a new instance of <see cref="T:System.Security.Cryptography.SHA512" />.</summary>
// Token: 0x06002528 RID: 9512 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002528")]
[Address(RVA = "0x10342D0", Offset = "0x10332D0", VA = "0x1810342D0")]
protected SHA512()
{
}
/// <summary>Creates an instance of the default implementation of <see cref="T:System.Security.Cryptography.SHA512" />.</summary>
/// <returns>A new instance of <see cref="T:System.Security.Cryptography.SHA512" />.</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: 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;
}
/// <summary>Creates an instance of a specified implementation of <see cref="T:System.Security.Cryptography.SHA512" />.</summary>
/// <param name="hashName">The name of the specific implementation of <see cref="T:System.Security.Cryptography.SHA512" /> to be used.</param>
/// <returns>A new instance of <see cref="T:System.Security.Cryptography.SHA512" /> 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: 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;
}
}
}