Foxit PDF RDK
TrustedCertStoreCallback Class Reference
Inheritance diagram for TrustedCertStoreCallback:
NativeObjectWrapper

Public Member Functions

 IsCertTrusted (cert)
 A callback function used to check if input certificate is trusted. More...
 
 IsCertTrustedRoot (cert)
 A callback function used to check if input certificate is used as a trusted root. More...
 
- Public Member Functions inherited from NativeObjectWrapper
 constructor (r)
 
 GetPointerAsNumber ()
 

Detailed Description

This class represent a callback object as trusted cert store. All the pure virtual functions in this class are used as callback functions and should be implemented by user.
If user wants to trust some certificate during LTV verify process, user can set a customized trusted cert store callback object by function LTVVerifier.SetTrustedCertStoreCallback before doint LTV verifying process.

See also
LTVVerifier
Examples
/Users/ec2-user/gitlab-runner/builds/E-xKdhDo/0/foxit/sdk/mobile/gsdk-doc-auto-build/harmony_nodejs/input/Index.js.

Member Function Documentation

◆ IsCertTrusted()

TrustedCertStoreCallback.IsCertTrusted ( cert  )

A callback function used to check if input certificate is trusted.

Parameters
[in]certCertificate content.
Returns
true means input certificate is trusted, while false means input certificated is not trusted.

◆ IsCertTrustedRoot()

TrustedCertStoreCallback.IsCertTrustedRoot ( cert  )

A callback function used to check if input certificate is used as a trusted root.

Parameters
[in]certCertificate content.
Returns
true means input certificate is used as a trusted root, while false means input certificated is not used as a trusted root.