BlobSync.CommonOps.CreateMD5Signature C# (CSharp) Метод

CreateMD5Signature() статический приватный Метод

static private CreateMD5Signature ( byte byteBlock, int length ) : byte[]
byteBlock byte
length int
Результат byte[]
        internal static byte[] CreateMD5Signature(byte[] byteBlock, int length)
        {
            var md5Hash = MD5.Create();

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