Cumulocity Web SDK - v1021.62.8
    Preparing search index...

    Class TrustedCertificateService

    This class allows for managing trusted certificates.

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    • Verifies signed verification code for trusted certificate.

      Parameters

      • entityOrId: string | ITrustedCertificate

        Trusted certificate object or finger print.

      • proofOfPossessionSignedVerificationCode: string

        Unsigned verification code encrypted by the private key.

      Returns Promise<IResult<ITrustedCertificate>>

      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;
      })();