using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Security.Cryptography { /// Computes the hash for the input data. // Token: 0x0200040C RID: 1036 [Token(Token = "0x200040C")] [ComVisible(true)] public abstract class SHA256 : HashAlgorithm { /// Initializes a new instance of . // Token: 0x060022F4 RID: 8948 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60022F4")] [Address(RVA = "0x2DFD660", Offset = "0x2DFC460", VA = "0x182DFD660")] protected SHA256() { } /// Creates an instance of the default implementation of . /// A new instance of . On the .NET Framework, this method creates an instance of the class if FIPS mode is not active; if FIPS mode is active, it creates an instance of the class. On .NET Core, it returns an instance of a private class derived from . /// On the .NET Framework 4.6.1 and earlier versions only: The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible. // Token: 0x060022F5 RID: 8949 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60022F5")] [Address(RVA = "0x2DFD560", Offset = "0x2DFC360", VA = "0x182DFD560")] public new static SHA256 Create() { return null; } /// Creates an instance of a specified implementation of . /// The name of the specific implementation of to be used. /// A new instance of using the specified implementation. /// On the .NET Framework only: FIPS mode is enabled, but requests , which is not FIPS compatible. // Token: 0x060022F6 RID: 8950 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60022F6")] [Address(RVA = "0x2DFD4D0", Offset = "0x2DFC2D0", VA = "0x182DFD4D0")] public new static SHA256 Create(string hashName) { return null; } } }