59 lines
2.0 KiB
C#
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.SHA384" /> algorithm. </summary>
|
|
// Token: 0x02000018 RID: 24
|
|
[Token(Token = "0x2000018")]
|
|
public sealed class SHA384CryptoServiceProvider : SHA384
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.SHA384CryptoServiceProvider" /> class. </summary>
|
|
// Token: 0x06000082 RID: 130 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000082")]
|
|
[Address(RVA = "0x6BC990", Offset = "0x6BB790", VA = "0x1806BC990")]
|
|
public SHA384CryptoServiceProvider()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes, or reinitializes, an instance of a hash algorithm.</summary>
|
|
// Token: 0x06000083 RID: 131 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000083")]
|
|
[Address(RVA = "0x6BC740", Offset = "0x6BB540", VA = "0x1806BC740", Slot = "18")]
|
|
public override void Initialize()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000084 RID: 132 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000084")]
|
|
[Address(RVA = "0x6BC660", Offset = "0x6BB460", VA = "0x1806BC660", Slot = "19")]
|
|
protected override void HashCore(byte[] array, int ibStart, int cbSize)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000085 RID: 133 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000085")]
|
|
[Address(RVA = "0x6BC890", Offset = "0x6BB690", VA = "0x1806BC890", Slot = "20")]
|
|
protected override byte[] HashFinal()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x06000086 RID: 134 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000086")]
|
|
[Address(RVA = "0x6BC820", Offset = "0x6BB620", VA = "0x1806BC820", Slot = "17")]
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000016 RID: 22
|
|
[Token(Token = "0x4000016")]
|
|
private static byte[] Empty;
|
|
|
|
// Token: 0x04000017 RID: 23
|
|
[FieldOffset(Offset = "0x28")]
|
|
[Token(Token = "0x4000017")]
|
|
private SHA384 hash;
|
|
}
|
|
}
|