using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// Represents the abstract class from which all implementations of the MD160 hash algorithm inherit.
// Token: 0x02000401 RID: 1025
[Token(Token = "0x2000401")]
[ComVisible(true)]
public abstract class RIPEMD160 : HashAlgorithm
{
/// Initializes a new instance of the class.
// Token: 0x0600226C RID: 8812 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600226C")]
[Address(RVA = "0x2DB3830", Offset = "0x2DB2630", VA = "0x182DB3830")]
protected RIPEMD160()
{
}
/// 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 it is not FIPS-compatible.
// 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;
}
/// 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 it is not FIPS-compatible.
// 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;
}
}
}