Brunet.Security.NullEncryption.CreateDecryptor C# (CSharp) Method

CreateDecryptor() public method

public CreateDecryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
rgbKey byte
rgbIV byte
return ICryptoTransform
    public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgbIV) {
      return new NullTransform();
    }