CertificateInformation Class¶
Namespace: id3.Bioseal
Definition¶
class CertificateInformation
class CertificateInformation implements Finalizable
public partial class CertificateInformation
public class CertificateInformation implements AutoCloseable, Serializable
public class CertificateInformation
typedef struct id3BiosealCertificateInformation *ID3_BIOSEAL_CERTIFICATE_INFORMATION;
Usage¶
certificateInformationInstance = id3bioseal.CertificateInformation()
Explicit destruction
# ...
del certificateInformationInstance
final certificateInformationInstance = sdk.CertificateInformation();
// ...
Explicit destruction
// ...
certificateInformationInstance.dispose()
using (var certificateInformationInstance = new CertificateInformation())
{
// ...
}
Explicit destruction
var certificateInformationInstance = new CertificateInformation()
// ...
certificateInformationInstance.Dispose()
try (CertificateInformation certificateInformationInstance = new CertificateInformation()) {
// ...
}
Explicit destruction
CertificateInformation certificateInformationInstance = new CertificateInformation();
// ...
certificateInformationInstance.close();
private var certificateInformationInstance: CertificateInformation? = nil
certificateInformationInstance = try CertificateInformation()
ID3_BIOSEAL_CERTIFICATE_INFORMATION hCertificateInformation{};
int err = id3BiosealCertificateInformation_Initialize(&hCertificateInformation);
if (err == ID3_SUCCESS) {
// ...
id3BiosealCertificateInformation_Dispose(&hCertificateInformation);
}
Properties¶
Name |
Type |
Description |
---|---|---|
The certificate extension list. |
||
byte[] |
The certificate data. |
|
string |
The common name (CN) of the certificate issuer. |
|
string |
The country (C) of the certificate issuer. |
|
string |
The distinguished name (DN) of the certificate issuer. |
|
string |
The organization (O) of the certificate issuer. |
|
string |
The organizational unit (OU) of the certificate issuer. |
|
The certificate key usage list. |
||
The date in local time after which a certificate is no longer valid. |
||
The date in local time when a certificate becomes valid. |
||
The certificate policies. |
||
byte[] |
The certificate public key. |
|
byte[] |
The serial number of the certificate. |
|
string |
The serial number from the certificate as a string. |
|
string |
The OID of the certificate’s signing algorithm. |
|
string |
The subject common name (CN) from the certificate. |
|
string |
The country (C) of the certificate subject. |
|
string |
The subject distinguished (DN) name of the certificate. |
|
string |
The organization (O) of the certificate subject. |
|
string |
The organizational unit (OU) of the certificate subject. |
|
int |
The certificate version. |