Amazon.Runtime.Internal.Util.DecryptionWrapper.SetDecryptionData C# (CSharp) Метод

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

public SetDecryptionData ( byte key, byte IV ) : void
key byte
IV byte
Результат void
        public void SetDecryptionData(byte[] key, byte[] IV)
        {
            algorithm.KeySize = encryptionKeySize;
            algorithm.Padding = PaddingMode.PKCS7;
            algorithm.Mode = CipherMode.CBC;
            algorithm.Key = key;
            algorithm.IV = IV;
        }