Amazon.Runtime.Internal.Util.EncryptionWrapper.AppendLastBlock C# (CSharp) Method

AppendLastBlock() public method

public AppendLastBlock ( byte buffer, int offset, int count ) : byte[]
buffer byte
offset int
count int
return byte[]
        public byte[] AppendLastBlock(byte[] buffer, int offset, int count)
        {
            byte[] finalTransform = encryptor.TransformFinalBlock(buffer, offset, count);
            return finalTransform;
        }