Lines Matching refs:credential

101 Represents detailed information about a credential.
107 | type | string | No | No | Type of the credential.|
108 | alias | string | No | No | Alias of the credential.|
109 | keyUri | string | No | No | Unique identifier of the credential.|
110 | certNum | number | No | No | Number of certificates contained in the credential.|
111 | keyNum | number | No | No | Number of keys contained in the credential.|
116 Represents brief information about a credential.
122 | type | string | No| No | Type of the credential.|
123 | alias | string | No | No | Alias of the credential.|
124 | keyUri | string | No | No | Unique identifier of the credential.|
136 … | Array<[CredentialAbstract](#credentialabstract)> | No | Yes | Brief credential information.|
137 | credential | [Credential](#credential) | No | Yes | Detailed credential information.|
139 | uri | string | No | Yes | Unique identifier of the certificate or credential.|
163 | CM_ERROR_NO_FOUND | 17500002 | The certificate or credential does not exist.|
164 | CM_ERROR_INCORRECT_FORMAT | 17500003 | The certificate or credential is in invalid format.|
172 Installs a private credential. This API uses an asynchronous callback to return the result.
203 /* The credential data to be installed must be assigned by the service. The data in this example is…
226 Installs a private credential. This API uses a promise to return the result.
264 /* The credential data to be installed must be assigned by the service. The data in this example is…
285 Obtains detailed information about a private credential. This API uses an asynchronous callback to …
295 | keyUri | string | Yes | Unique identifier of the target credential.|
296 … If the operation is successful, **err** is **null** and **data** is **credential** in the [CMResu…
313 let uri: string = 'test'; /* URI of the credential installed. The process for installing the creden…
319 if (cmResult?.credential == undefined) {
322 let list = cmResult.credential;
336 Obtains detailed information about a private credential. This API uses a promise to return the resu…
346 | keyUri | string | Yes | Unique identifier of the target credential.|
352 …](#cmresult)> | Promise used to return the private credential details obtained, that is, **credent…
370 let uri: string = 'test'; /* URI of the credential installed. The process for installing the creden…
373 if (cmResult?.credential == undefined) {
376 let list = cmResult.credential;
391 Uninstalls a private credential. This API uses an asynchronous callback to return the result.
401 | keyUri | string | Yes | Unique identifier of the credential to uninstall.|
419 let uri: string = 'test'; /* URI of the credential installed. The process for installing the creden…
437 Uninstalls a private credential. This API uses a promise to return the result.
447 | keyUri | string | Yes | Unique identifier of the credential to uninstall.|
471 let uri: string = 'test'; /* URI of the credential installed. The process for installing the creden…
487 Initializes the signing or signature verification operation using the specified credential. This AP…
497 | authUri | string | Yes | Unique identifier of the credential to use.|
517 let uri: string = 'test'; /* URI of the credential installed. The process for installing the creden…
540 Initializes the signing or signature verification operation using the specified credential. This AP…
550 | authUri | string | Yes | Unique identifier of the credential to use.|
576 let uri: string = 'test'; /* URI of the credential installed. The process for installing the creden…
980 Obtains detailed information about a public credential. This API uses a promise to return the resul…
990 | keyUri | string | Yes | Unique identifier of the public credential.|
996 …eturn the detailed information about the user's public credential obtained, that is, **credential*…
1015 … = 'test'; /* Unique identifier of the public credential. The process for installing the public cr…
1018 if (cmResult?.credential == undefined) {
1021 let cred = cmResult.credential;
1036 Checks whether this application is authorized by the specified user credential. This API uses a pro…
1046 | keyUri | string | Yes | Unique identifier of the credential.|
1052 …ean value, which indicates whether the application is authorized by the specified user credential.|
1069 …ri: string = 'test'; /* Unique identifier of the credential. The process for authorizing the crede…