Lines Matching refs:certificate

3 The **certificateManagerDialog** module provides APIs for opening the certificate management pages,…
17 Enumerates the page types of the certificate management dialog box.
26 | PAGE_CA_CERTIFICATE | 2 | CA certificate list page.|
32 Enumerates the types of the certificate to be installed.
40 | CA_CERT | 1 | CA certificate.|
44 Defines the usage scope of the certificate to be installed.
56 Enumerates the error codes reported when the certificate management dialog box APIs are called.
66 | ERROR_OPERATION_FAILED<sup>14+</sup> | 29700003 | The certificate installation fails.|
73 Opens the certificate management dialog box and displays the page of the specified type. This API u…
116 console.info('Succeeded in opening certificate manager dialog.');
118 …console.error(`Failed to open certificate manager dialog. Code: ${err.code}, message: ${err.messag…
121 …console.error(`Failed to open certificate manager dialog. Code: ${error.code}, message: ${error.me…
128 Opens a dialog box for installing a certificate. This API uses a promise to return the result.
141 …ertificateType](#certificatetype14) | Yes | Type of the certificate to install.|
142 …[CertificateScope](#certificatescope14) | Yes | Usage scope of the certificate.|
143 | cert | Uint8Array | Yes | Data of the certificate to install.|
149 | Promise\<string> | Promise used to return the certificate URI.|
161 | 29700003<sup>14+</sup> | The user install certificate failed in the certificate manager dialog. …
172 /* certificateType specifies the certificate type. The value CA_CERT here indicates a CA certificat…
174 …ficateScope specifies the usage scope of the certificate. The value CURRENT_USER here means the ce…
176 /* The CA certificate data must be assigned by the service. In this example, the data is not CA cer…
182 console.info('Succeeded opening install certificate');
184 …console.error(`Failed to open install certificate dialog. Code: ${err.code}, message: ${err.messag…
187 …console.error(`Failed to open install certificate dialog. Code: ${error.code}, message: ${error.me…