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: 0x0200041D RID: 1053 [Token(Token = "0x200041D")] [ComVisible(true)] public abstract class RIPEMD160 : HashAlgorithm { /// Initializes a new instance of the class. // Token: 0x06002478 RID: 9336 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002478")] [Address(RVA = "0x1020B90", Offset = "0x101FB90", VA = "0x181020B90")] 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: 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; } /// 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: 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; } } }