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 MD160 hash algorithm inherit.</summary>
|
|
// Token: 0x02000401 RID: 1025
|
|
[Token(Token = "0x2000401")]
|
|
[ComVisible(true)]
|
|
public abstract class RIPEMD160 : HashAlgorithm
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.RIPEMD160" /> class.</summary>
|
|
// Token: 0x0600226C RID: 8812 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600226C")]
|
|
[Address(RVA = "0x2DB3830", Offset = "0x2DB2630", VA = "0x182DB3830")]
|
|
protected RIPEMD160()
|
|
{
|
|
}
|
|
|
|
/// <summary>Creates an instance of the default implementation of the <see cref="T:System.Security.Cryptography.RIPEMD160" /> hash algorithm.</summary>
|
|
/// <returns>A new instance of the <see cref="T:System.Security.Cryptography.RIPEMD160" /> hash algorithm.</returns>
|
|
/// <exception cref="T:System.Reflection.TargetInvocationException">The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but it is not FIPS-compatible.</exception>
|
|
// Token: 0x0600226D RID: 8813 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x600226D")]
|
|
[Address(RVA = "0x2DB37E0", Offset = "0x2DB25E0", VA = "0x182DB37E0")]
|
|
public new static RIPEMD160 Create()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Creates an instance of the specified implementation of the <see cref="T:System.Security.Cryptography.RIPEMD160" /> hash algorithm.</summary>
|
|
/// <param name="hashName">The name of the specific implementation of <see cref="T:System.Security.Cryptography.RIPEMD160" /> to use.</param>
|
|
/// <returns>A new instance of the specified implementation of <see cref="T:System.Security.Cryptography.RIPEMD160" />.</returns>
|
|
/// <exception cref="T:System.Reflection.TargetInvocationException">The algorithm described by the <paramref name="hashName" /> parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but it is not FIPS-compatible.</exception>
|
|
// Token: 0x0600226E RID: 8814 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x600226E")]
|
|
[Address(RVA = "0x2DB3750", Offset = "0x2DB2550", VA = "0x182DB3750")]
|
|
public new static RIPEMD160 Create(string hashName)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|