Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

59 lines
2.0 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// <summary>Defines a wrapper object to access the cryptographic service provider (CSP) implementation of the <see cref="T:System.Security.Cryptography.SHA512" /> algorithm. </summary>
// Token: 0x0200001D RID: 29
[Token(Token = "0x200001D")]
public sealed class SHA512CryptoServiceProvider : SHA512
{
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.SHA512CryptoServiceProvider" /> class. </summary>
// Token: 0x060000B9 RID: 185 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60000B9")]
[Address(RVA = "0x10DBA00", Offset = "0x10DAA00", VA = "0x1810DBA00")]
public SHA512CryptoServiceProvider()
{
}
/// <summary>Initializes, or reinitializes, an instance of a hash algorithm.</summary>
// Token: 0x060000BA RID: 186 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60000BA")]
[Address(RVA = "0x10DB5E0", Offset = "0x10DA5E0", VA = "0x1810DB5E0", Slot = "18")]
public override void Initialize()
{
}
// Token: 0x060000BB RID: 187 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60000BB")]
[Address(RVA = "0x10DB500", Offset = "0x10DA500", VA = "0x1810DB500", Slot = "19")]
protected override void HashCore(byte[] array, int ibStart, int cbSize)
{
}
// Token: 0x060000BC RID: 188 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60000BC")]
[Address(RVA = "0x10DB900", Offset = "0x10DA900", VA = "0x1810DB900", Slot = "20")]
protected override byte[] HashFinal()
{
return null;
}
// Token: 0x060000BD RID: 189 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60000BD")]
[Address(RVA = "0x10DB890", Offset = "0x10DA890", VA = "0x1810DB890", Slot = "17")]
protected override void Dispose(bool disposing)
{
}
// Token: 0x04000035 RID: 53
[Token(Token = "0x4000035")]
private static byte[] Empty;
// Token: 0x04000036 RID: 54
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000036")]
private SHA512 hash;
}
}