Response wrapped in IResult
Example
const certificate: Partial<ITrustedCertificate> = {
name: 'Name',
certInPemFormat: 'MIID+DCCAuCgAwIBAgIJAO1Q9t/M9gYlMA0GC...',
status: 'ENABLED'
};
(async () => {
const {data, res} = await trustedCertificateService.create(certificate);
})();
Response wrapped in IResult
Response wrapped in IResult
Example
const fingerprint: string = 'abc';
(async () => {
const {data, res} = await trustedCertificateService.detail(fingerprint);
})();
Response wrapped in IResultList.
Example
(async () => {
const {data, res} = await trustedCertificateService.list();
})();
Certificate object with new verification code (wrapped in IResult)
Example
(async () => {
const fingerPrint = '00a360973e3e8d61e05aedb32c72438e2442279e';
const {data, res} = await trustedCertificateService.regeneratePoPVerificationCode(fingerPrint);
const newProofOfPossessionUnsignedVerificationCode = data.proofOfPossessionUnsignedVerificationCode;
})();
Response wrapped in IResult
Example
const certificate: Partial<ITrustedCertificate> = {
name: 'Name'
};
(async () => {
const {data, res} = await trustedCertificateService.update(certificate);
})();
Certificate object with the result of verification (wrapped in IResult).
Example
(async () => {
const fingerPrint = '00a360973e3e8d61e05aedb32c72438e2442279e';
const encryptedVerificationCode ='fuvlVWLfXG3V3bJWAdEhPD0HFCrYo5';
const {data, res} = await trustedCertificateService.verifySignedVerificationCode(fingerPrint, encryptedVerificationCode);
const isCertificateVerified = data.proofOfPossessionValid;
})();
Generated using TypeDoc