Files
Aug2021-Cpp2IL-Dump/mscorlib/System/Security/Cryptography/MD5.cs
T
2026-04-10 22:50:51 +02:00

45 lines
2.3 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// <summary>Represents the abstract class from which all implementations of the <see cref="T:System.Security.Cryptography.MD5" /> hash algorithm inherit.</summary>
// Token: 0x020003F6 RID: 1014
[Token(Token = "0x20003F6")]
[ComVisible(true)]
public abstract class MD5 : HashAlgorithm
{
/// <summary>Initializes a new instance of <see cref="T:System.Security.Cryptography.MD5" />.</summary>
// Token: 0x06002205 RID: 8709 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002205")]
[Address(RVA = "0x2DAD460", Offset = "0x2DAC260", VA = "0x182DAD460")]
protected MD5()
{
}
/// <summary>Creates an instance of the default implementation of the <see cref="T:System.Security.Cryptography.MD5" /> hash algorithm.</summary>
/// <returns>A new instance of the <see cref="T:System.Security.Cryptography.MD5" /> hash algorithm.</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: 0x06002206 RID: 8710 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002206")]
[Address(RVA = "0x2DAD410", Offset = "0x2DAC210", VA = "0x182DAD410")]
public new static MD5 Create()
{
return null;
}
/// <summary>Creates an instance of the specified implementation of the <see cref="T:System.Security.Cryptography.MD5" /> hash algorithm.</summary>
/// <param name="algName">The name of the specific implementation of <see cref="T:System.Security.Cryptography.MD5" /> to use.</param>
/// <returns>A new instance of the specified implementation of <see cref="T:System.Security.Cryptography.MD5" />.</returns>
/// <exception cref="T:System.Reflection.TargetInvocationException">The algorithm described by the <paramref name="algName" /> parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.</exception>
// Token: 0x06002207 RID: 8711 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002207")]
[Address(RVA = "0x2DAD380", Offset = "0x2DAC180", VA = "0x182DAD380")]
public new static MD5 Create(string algName)
{
return null;
}
}
}