KeyUsage constructor

KeyUsage({
  1. bool? cRLSign,
  2. bool? dataEncipherment,
  3. bool? decipherOnly,
  4. bool? digitalSignature,
  5. bool? encipherOnly,
  6. bool? keyAgreement,
  7. bool? keyCertSign,
  8. bool? keyEncipherment,
  9. bool? nonRepudiation,
})

Implementation

KeyUsage({
  this.cRLSign,
  this.dataEncipherment,
  this.decipherOnly,
  this.digitalSignature,
  this.encipherOnly,
  this.keyAgreement,
  this.keyCertSign,
  this.keyEncipherment,
  this.nonRepudiation,
});