CertificateInformation.fromHandle constructor

CertificateInformation.fromHandle(
  1. Pointer<id3BiosealCertificateInformation> handle
)

Creates a new instance of the CertificateInformation class.

param handle Handle to the CertificateInformation. throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

CertificateInformation.fromHandle(Pointer<id3BiosealCertificateInformation> handle) {
  _pHandle = calloc();
  _pHandle.value = handle;
  _disposable = false;
}