Amazon.Runtime.Internal.Util.EncryptionWrapper.AppendBlock C# (CSharp) Метод

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

public AppendBlock ( byte buffer, int offset, int count, byte target, int targetOffset ) : int
buffer byte
offset int
count int
target byte
targetOffset int
Результат int
        public int AppendBlock(byte[] buffer, int offset, int count, byte[] target, int targetOffset)
        {
            int bytesRead = encryptor.TransformBlock(buffer, offset, count, target, targetOffset);
            return bytesRead;
        }