From 6b34f9887fddd1e4c6f2cec4537f7cd440d3be9d Mon Sep 17 00:00:00 2001 From: wufengshan Date: Sun, 30 Jan 2022 14:28:05 +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 | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/api/@ohos.data.rdb.d.ts b/api/@ohos.data.rdb.d.ts index df961acd5e..5c5693bb7e 100644 --- a/api/@ohos.data.rdb.d.ts +++ b/api/@ohos.data.rdb.d.ts @@ -135,18 +135,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; } /** -- Gitee