KeyUsageOptions constructor

KeyUsageOptions({
  1. bool? certSign,
  2. bool? contentCommitment,
  3. bool? crlSign,
  4. bool? dataEncipherment,
  5. bool? decipherOnly,
  6. bool? digitalSignature,
  7. bool? encipherOnly,
  8. bool? keyAgreement,
  9. bool? keyEncipherment,
})

Implementation

KeyUsageOptions({
  this.certSign,
  this.contentCommitment,
  this.crlSign,
  this.dataEncipherment,
  this.decipherOnly,
  this.digitalSignature,
  this.encipherOnly,
  this.keyAgreement,
  this.keyEncipherment,
});