From b4420fb0cdfae66a09646f117bc66806cd3ad551 Mon Sep 17 00:00:00 2001 From: wufengshan <1414645694@qq.com> Date: Sun, 30 Jan 2022 18:53:56 +0800 Subject: [PATCH] Signed-off-by: wu-fengshan Changes to be committed: modified: api/@ohos.data.rdb.d.ts --- api/@ohos.data.rdb.d.ts | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/api/@ohos.data.rdb.d.ts b/api/@ohos.data.rdb.d.ts index dfbcea11da..72f225e00f 100644 --- a/api/@ohos.data.rdb.d.ts +++ b/api/@ohos.data.rdb.d.ts @@ -150,18 +150,6 @@ declare namespace rdb { executeSql(sql: string, bindArgs: Array, callback: AsyncCallback): void; executeSql(sql: string, bindArgs?: Array): Promise; - /** - * change the encrypted key(not null) if the database is configured with encrypted key. - * - * @note N/A - * @since 8 - * @sysCap SystemCapability.Data.DATA_APPDATAMGR - * @devices phone, tablet, tv, wearable, car - * @param newEncryptKey the encrypted key is uint8 form in a vector. - */ - changeEncryptKey(newEncryptKey:Uint8Array, callback: AsyncCallback):void; - changeEncryptKey(newEncryptKey:Uint8Array): Promise; - /** * beginTransaction before excute your sql * @@ -249,7 +237,6 @@ declare namespace rdb { * @since 8 * @sysCap SystemCapability.Data.DATA_APPDATAMGR */ - encryptKey: Uint8Array; } /** -- Gitee