Lines Matching refs:certificate
4 A certificate chain is an ordered list of certificates, in which each certificate is signed by the …
7 …certificate chain consists three certificates. The root certificate is self-signed by GlobalSign, …
13 You can refer to the following example to construct a certificate chain from multiple certificates.
18 1. Import the [certFramework](../../reference/apis-device-certificate-kit/js-apis-cert.md) module.
23 …ator](../../reference/apis-device-certificate-kit/js-apis-cert.md#certcreatecertchainvalidator) to…
25 3. Create a [CertChainData](../../reference/apis-device-certificate-kit/js-apis-cert.md#certchainda…
27 …The certificate framework provides a **CertChainValidator** object to validate certificate chains.…
31 …certificate, which is eight bytes, and the following eight bytes indicate the certificate data. Th…
33 …| encodingFormat | [EncodingFormat](../../reference/apis-device-certificate-kit/js-apis-cert.md#en…
35 …tor.validate](../../reference/apis-device-certificate-kit/js-apis-cert.md#validate) to validate th…
48 // Level-2 CA certificate data, which is only an example.
55 // Certificate chain validator. In this example, it validates a two-level certificate chain.
64 // CA certificate data.
67 // Length of the CA certificate data.
70 // Data of the level-2 CA certificate.
73 // Length of the level-2 CA certificate data.
76 …certificate chain in L-V format: Length of the level-2 CA certificate data + Level-2 CA certificat…
94 // Uint8Array in L-V format (certificate data length-certificate data).
98 …// Certificate format. Only PEM and DER are supported. In this example, the certificate is in PEM …
102 // Validate the certificate chain.