setVerifiesCrlUpdates method

void setVerifiesCrlUpdates(
  1. bool verifiesCrlUpdates
)

Sets the indicates whether the verification process should verify the next CRL update. Hint: Default value is true.

param verifiesCrlUpdates Indicates whether the verification process should verify the next CRL update. throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

void setVerifiesCrlUpdates(bool verifiesCrlUpdates) {
  var err = biosealSDK.id3Bioseal_SetVerifiesCrlUpdates(_pHandle.value, verifiesCrlUpdates);
  if (err != BiosealError.success.value) {
    throw BiosealException(err);
  }
}