45 lines
2.3 KiB
C#
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: 0x02000412 RID: 1042
|
|
[Token(Token = "0x2000412")]
|
|
[ComVisible(true)]
|
|
public abstract class MD5 : HashAlgorithm
|
|
{
|
|
/// <summary>Initializes a new instance of <see cref="T:System.Security.Cryptography.MD5" />.</summary>
|
|
// Token: 0x06002411 RID: 9233 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002411")]
|
|
[Address(RVA = "0xC0F130", Offset = "0xC0E130", VA = "0x180C0F130")]
|
|
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: 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;
|
|
}
|
|
|
|
/// <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: 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;
|
|
}
|
|
}
|
|
}
|