This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,26 @@
using System;
using System.Security.Cryptography;
using Cpp2IlInjected;
namespace Mono.Security.Cryptography
{
// Token: 0x02000043 RID: 67
[Token(Token = "0x2000043")]
internal abstract class MD4 : HashAlgorithm
{
// Token: 0x060001A2 RID: 418 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60001A2")]
[Address(RVA = "0xE4CC90", Offset = "0xE4BC90", VA = "0x180E4CC90")]
protected MD4()
{
}
// Token: 0x060001A3 RID: 419 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60001A3")]
[Address(RVA = "0xE4E160", Offset = "0xE4D160", VA = "0x180E4E160")]
public new static MD4 Create()
{
return null;
}
}
}