Amazon.Runtime.Internal.Util.EncryptionWrapper.AppendLastBlock C# (CSharp) Méthode

AppendLastBlock() public méthode

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