using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// Represents the abstract class from which all implementations of the hash algorithm inherit.
// Token: 0x020003F6 RID: 1014
[Token(Token = "0x20003F6")]
[ComVisible(true)]
public abstract class MD5 : HashAlgorithm
{
/// Initializes a new instance of .
// Token: 0x06002205 RID: 8709 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002205")]
[Address(RVA = "0x2DAD460", Offset = "0x2DAC260", VA = "0x182DAD460")]
protected MD5()
{
}
/// Creates an instance of the default implementation of the hash algorithm.
/// A new instance of the hash algorithm.
/// The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.
// 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;
}
/// Creates an instance of the specified implementation of the hash algorithm.
/// The name of the specific implementation of to use.
/// A new instance of the specified implementation of .
/// The algorithm described by the parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.
// 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;
}
}
}