Amazon.Runtime.Internal.Util.EncryptionWrapper.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)
        {
            byte[] finalTransform = encryptor.TransformFinalBlock(buffer, offset, count);
            return finalTransform;
        }