using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Security.Cryptography { /// Computes the hash for the input data. // Token: 0x02000426 RID: 1062 [Token(Token = "0x2000426")] [ComVisible(true)] public abstract class SHA1 : HashAlgorithm { /// Initializes a new instance of . /// The policy on this object is not compliant with the FIPS algorithm. // Token: 0x060024F4 RID: 9460 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60024F4")] [Address(RVA = "0x1020B90", Offset = "0x101FB90", VA = "0x181020B90")] protected SHA1() { } /// Creates an instance of the default implementation of . /// A new instance of . // Token: 0x060024F5 RID: 9461 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60024F5")] [Address(RVA = "0x10307C0", Offset = "0x102F7C0", VA = "0x1810307C0")] public new static SHA1 Create() { return null; } /// Creates an instance of the specified implementation of . /// The name of the specific implementation of to be used. /// A new instance of using the specified implementation. // Token: 0x060024F6 RID: 9462 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60024F6")] [Address(RVA = "0x1030730", Offset = "0x102F730", VA = "0x181030730")] public new static SHA1 Create(string hashName) { return null; } } }