BlobSync.CommonOps.CreateMD5Signature C# (CSharp) Method

CreateMD5Signature() static private method

static private CreateMD5Signature ( byte byteBlock, int length ) : byte[]
byteBlock byte
length int
return byte[]
        internal static byte[] CreateMD5Signature(byte[] byteBlock, int length)
        {
            var md5Hash = MD5.Create();

            var res = md5Hash.ComputeHash(byteBlock, 0, length);
            return res;
        }