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: 0x0200041D RID: 1053
|
|
[Token(Token = "0x200041D")]
|
|
[ComVisible(true)]
|
|
public abstract class RIPEMD160 : HashAlgorithm
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.RIPEMD160" /> class.</summary>
|
|
// Token: 0x06002478 RID: 9336 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002478")]
|
|
[Address(RVA = "0x1020B90", Offset = "0x101FB90", VA = "0x181020B90")]
|
|
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: 0x06002479 RID: 9337 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x6002479")]
|
|
[Address(RVA = "0x1020A90", Offset = "0x101FA90", VA = "0x181020A90")]
|
|
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: 0x0600247A RID: 9338 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x600247A")]
|
|
[Address(RVA = "0x1020A00", Offset = "0x101FA00", VA = "0x181020A00")]
|
|
public new static RIPEMD160 Create(string hashName)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|