BitSharper.Sha256Hash.Sha256Hash C# (CSharp) 메소드

Sha256Hash() 공개 메소드

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

Same methods

Sha256Hash::Sha256Hash ( string @string ) : System