AaltoTLS.PluginInterface.BulkCipherAlgorithmNull.CreateDecryptor C# (CSharp) Méthode

CreateDecryptor() public méthode

public CreateDecryptor ( byte rgbKey, byte rgbIV, byte additional ) : ICryptoTransform
rgbKey byte
rgbIV byte
additional byte
Résultat ICryptoTransform
        public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgbIV, byte[] additional)
        {
            return new NullCryptoTransform();
        }