getVerifiesCrlUpdates method

bool getVerifiesCrlUpdates()

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

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

Implementation

bool getVerifiesCrlUpdates() {
  Pointer<Bool> pVerifiesCrlUpdates = calloc();
  try {
    var err = biosealSDK.id3Bioseal_GetVerifiesCrlUpdates(_pHandle.value, pVerifiesCrlUpdates);
    if (err != BiosealError.success.value) {
      throw BiosealException(err);
    }
    final vVerifiesCrlUpdates = pVerifiesCrlUpdates.value;
    return vVerifiesCrlUpdates;
  } finally {
    calloc.free(pVerifiesCrlUpdates);
  }
}