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

CreateEncryptor() public method

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