Amazon.Runtime.Internal.Util.HashingWrapper.AppendLastBlock C# (CSharp) Метод

AppendLastBlock() публичный Метод

public AppendLastBlock ( byte buffer, int offset, int count ) : byte[]
buffer byte
offset int
count int
Результат byte[]
        public byte[] AppendLastBlock(byte[] buffer, int offset, int count)
        {
            _algorithm.TransformFinalBlock(buffer, offset, count);
            return _algorithm.Hash;
        }