Home
last modified time | relevance | path

Searched refs:updateSession (Results 1 – 25 of 32) sorted by relevance

12

/ohos5.0/docs/zh-cn/application-dev/security/UniversalKeystoreKit/
H A Dhuks-key-derivation-arkts.md44 3. 调用[updateSession](../../reference/apis-universal-keystore-kit/js-apis-huks.md#huksupdatesession9…
232 function updateSession(handle: number, huksOptions: huks.HuksOptions, throwObject: throwObject) {
235 huks.updateSession(handle, huksOptions, (error, data) => {
253 await updateSession(handle, huksOptions, throwObject)
550 function updateSession(handle: number, huksOptions: huks.HuksOptions, throwObject: throwObject) {
553 huks.updateSession(handle, huksOptions, (error, data) => {
571 await updateSession(handle, huksOptions, throwObject)
H A Dhuks-key-agreement-arkts.md230 function updateSession(handle: number, huksOptions: huks.HuksOptions, throwObject: throwObject) {
233 huks.updateSession(handle, huksOptions, (error, data) => {
247 /* 调用updateSession进行协商操作 */
252 await updateSession(handle, huksOptions, throwObject)
474 await huks.updateSession(initHandle.handle, dhAgreeUpdateBobPubKey)
520 await huks.updateSession(handle.handle, dhAgreeUpdatePubKey)
H A Dhuks-key-use-overview.md26 2. (可选)分段操作数据[huks.updateSession()](../../reference/apis-universal-keystore-kit/js-apis-huks.md#huk…
H A Dhuks-user-identity-authentication.md313 function updateSession(handle: number, huksOptions: huks.HuksOptions, token: Uint8Array, throwObjec…
316 huks.updateSession(handle, huksOptions, token, (error, data) => {
334 await updateSession(handle, huksOptions, token, throwObject)
H A Dhuks-signing-signature-verification-arkts.md50 5. 调用[updateSession](../../reference/apis-universal-keystore-kit/js-apis-huks.md#huksupdatesession9…
185 await huks.updateSession(handle, options)
348 await huks.updateSession(handle, options)
518 await huks.updateSession(handle, options)
682 await huks.updateSession(handle, options)
H A Dhuks-import-wrapped-key-arkts.md406 await huks.updateSession(handle, HuksOptions)
459 await huks.updateSession(handle, HuksOptions)
/ohos5.0/docs/zh-cn/application-dev/reference/apis-universal-keystore-kit/
H A Djs-apis-huks.md1978 ## huks.updateSession<sup>9+</sup>
1982 updateSession操作密钥接口,使用Callback回调异步返回结果。huks.initSession, huks.updateSession, huks.finishSession为三段式…
2017 ## huks.updateSession<sup>9+</sup>
2021 updateSession操作密钥接口,使用Callback回调异步返回结果。huks.initSession, huks.updateSession, huks.finishSession为三段式…
2057 ## huks.updateSession<sup>9+</sup>
2061 updateSession操作密钥接口,使用Promise方式异步返回结果。huks.initSession, huks.updateSession, huks.finishSession为三段式接…
2263 * huks.initSession和huks.updateSession
2373 * huks.initSession和huks.updateSession
2456 await huks.updateSession(handle, options)
2461 console.error(`promise: updateSession failed`);
[all …]
H A Djs-apis-huks-sys.md1030 await huks.updateSession(handle, huksOptions)
1095 await huks.updateSession(handle, huksOptions)
1621 指定用户身份操作密钥接口,使用Promise方式异步返回结果。huks.initSessionAsUser, huks.updateSession, huks.finishSession为三段式接口…
/ohos5.0/docs/en/application-dev/security/UniversalKeystoreKit/
H A Dhuks-key-agreement-arkts.md229 /* Call updateSession multiple times to process data by segment and output the processed data. */
230 function updateSession(handle: number, huksOptions: huks.HuksOptions, throwObject: throwObject) {
233 huks.updateSession(handle, huksOptions, (error, data) => {
247 /* Call updateSession to perform key agreement. */
252 await updateSession(handle, huksOptions, throwObject)
474 await huks.updateSession(initHandle.handle, dhAgreeUpdateBobPubKey)
520 await huks.updateSession(handle.handle, dhAgreeUpdatePubKey)
H A Dhuks-key-derivation-arkts.md44 3. Use [updateSession](../../reference/apis-universal-keystore-kit/js-apis-huks.md#huksupdatesessio…
232 function updateSession(handle: number, huksOptions: huks.HuksOptions, throwObject: throwObject) {
235 huks.updateSession(handle, huksOptions, (error, data) => {
253 await updateSession(handle, huksOptions, throwObject)
550 function updateSession(handle: number, huksOptions: huks.HuksOptions, throwObject: throwObject) {
553 huks.updateSession(handle, huksOptions, (error, data) => {
571 await updateSession(handle, huksOptions, throwObject)
H A Dhuks-user-identity-authentication.md313 function updateSession(handle: number, huksOptions: huks.HuksOptions, token: Uint8Array, throwObjec…
316 huks.updateSession(handle, huksOptions, token, (error, data) => {
334 await updateSession(handle, huksOptions, token, throwObject)
H A Dhuks-signing-signature-verification-arkts.md50 5. Use [updateSession](../../reference/apis-universal-keystore-kit/js-apis-huks.md#huksupdatesessio…
185 await huks.updateSession(handle, options)
348 await huks.updateSession(handle, options)
518 await huks.updateSession(handle, options)
682 await huks.updateSession(handle, options)
H A Dhuks-key-use-overview.md26 2. (Optional) Process data by segment using [huks.updateSession()](../../reference/apis-universal-k…
H A Dhuks-import-wrapped-key-arkts.md406 await huks.updateSession(handle, HuksOptions)
459 await huks.updateSession(handle, HuksOptions)
/ohos5.0/base/security/huks/interfaces/kits/liteapi/include/
H A Dhks_lite_api.h29 static JSIValue updateSession(const JSIValue thisVal, const JSIValue *args, uint8_t argsNum);
/ohos5.0/base/security/huks/interfaces/kits/liteapi/src/
H A Dhks_lite_api_update_finish_session.cpp120 JSIValue HksLiteModule::updateSession(const JSIValue thisVal, const JSIValue *args, uint8_t argsNum) in updateSession() function in OHOS::ACELite::HksLiteModule
H A Dhks_lite_api.cpp299 JSI::SetModuleAPI(exports, "updateSession", HksLiteModule::updateSession); in InitHuksModule()
/ohos5.0/docs/en/application-dev/reference/apis-universal-keystore-kit/
H A Djs-apis-huks.md1977 ## huks.updateSession<sup>9+</sup>
2016 ## huks.updateSession<sup>9+</sup>
2056 ## huks.updateSession<sup>9+</sup>
2261 /* huks.initSession, huks.updateSession, and huks.finishSession must be used together.
2262 * If an error occurs in any of huks.initSession, huks.updateSession,
2371 /* huks.initSession, huks.updateSession, and huks.finishSession must be used together.
2372 * If an error occurs in any of huks.initSession, huks.updateSession,
2455 await huks.updateSession(handle, options)
2457 console.info(`promise: updateSession success, data = ${JSON.stringify(data)}`);
2460 console.error(`promise: updateSession failed`);
[all …]
H A Djs-apis-huks-sys.md1030 await huks.updateSession(handle, huksOptions)
1095 await huks.updateSession(handle, huksOptions)
1621 …es a promise to return the result. **huks.initSessionAsUser**, **huks.updateSession**, and **huks.…
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-beta4/
H A Djs-apidiff-security.md61 …te<br>废弃版本:N/A|方法名 or 属性名:update<br>废弃版本:9<br>代替接口:ohos.security.huks.updateSession |@ohos.sec…
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-Release/
H A Djs-apidiff-security.md238 |新增|NA|类名:huks;<br>方法or属性:function updateSession(handle: number, options: HuksOptions, callback: As…
239 |新增|NA|类名:huks;<br>方法or属性:function updateSession(handle: number, options: HuksOptions, token: Uint8…
240 |新增|NA|类名:huks;<br>方法or属性:function updateSession(handle: number, options: HuksOptions, token?: Uint…
314 …Callback\<HuksResult>) : void;<br>新版本信息:9<br>代替接口: ohos.security.huks.updateSession|@ohos.security…
315 …tions) : Promise\<HuksResult>;<br>新版本信息:9<br>代替接口: ohos.security.huks.updateSession|@ohos.security…
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v3.2-Release/
H A Djs-apidiff-security.md222 …ptions): Promise\<HuksResult>;<br>新版本信息:9<br>代替接口: ohos.security.huks.updateSession|@ohos.security…
250updateSession(<br><br> handle: number,<br><br> options: HuksOptions,<br><br> token: Uint8…
251updateSession(handle: number, options: HuksOptions, token?: Uint8Array): Promise\<HuksReturnResult…
/ohos5.0/docs/zh-cn/release-notes/changelogs/v3.2-beta5/
H A Dchangelogs-security.md426 huks.updateSession
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_3.2.10.1/
H A Dchangelog-security.md426 huks.updateSession
/ohos5.0/docs/en/release-notes/api-diff/v3.2-beta4/
H A Djs-apidiff-security.md61 …update<br>Deprecated version: 9<br>Substitute API: ohos.security.huks.updateSession |@ohos.sec…

12