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: 0x02000412 RID: 1042
[Token(Token = "0x2000412")]
[ComVisible(true)]
public abstract class MD5 : HashAlgorithm
{
/// Initializes a new instance of .
// Token: 0x06002411 RID: 9233 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002411")]
[Address(RVA = "0xC0F130", Offset = "0xC0E130", VA = "0x180C0F130")]
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: 0x06002412 RID: 9234 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002412")]
[Address(RVA = "0xC0F0E0", Offset = "0xC0E0E0", VA = "0x180C0F0E0")]
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: 0x06002413 RID: 9235 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002413")]
[Address(RVA = "0xC0F050", Offset = "0xC0E050", VA = "0x180C0F050")]
public new static MD5 Create(string algName)
{
return null;
}
}
}