using System.Security.Cryptography; namespace ln.crypto.ec { public static class SHA256Extensions { public static void TransformBlock(this SHA256 sha256, byte[] input) => sha256.TransformBlock(input,0,input.Length, null, 0); } }