AaltoTLS.PluginInterface.BulkCipherAlgorithmNull.CreateDecryptor C# (CSharp) 메소드

CreateDecryptor() 공개 메소드

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