BitSharper.Sha256Hash.Sha256Hash C# (CSharp) Method

Sha256Hash() public method

Creates a Sha256Hash by wrapping the given byte array. It must be 32 bytes long.
public Sha256Hash ( byte bytes ) : System
bytes byte
return System
        public Sha256Hash(byte[] bytes)
        {
            Debug.Assert(bytes.Length == 32);
            _bytes = bytes;
        }

Same methods

Sha256Hash::Sha256Hash ( string @string ) : System