电子说
为保证数据安全性,当不需要使用该密钥时,应该删除密钥。
target_link_libraries(entry PUBLIC libhuks_ndk.z.so)
以删除HKDF256密钥为例。
gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md
]#include "huks/native_huks_api.h"
#include "huks/native_huks_param.h"
#include < string.h >
static napi_value DeleteKey(napi_env env, napi_callback_info info)
{
/* 1.获取密钥别名 */
struct OH_Huks_Blob keyAlias = {
(uint32_t)strlen("test_key"),
(uint8_t *)"test_key"
};
/* 2.调用OH_Huks_DeleteKeyItem删除密钥 */
struct OH_Huks_Result ohResult = OH_Huks_DeleteKeyItem(&keyAlias, nullptr);
napi_value ret;
napi_create_int32(env, ohResult.errorCode, &ret);
return ret;
}
审核编辑 黄宇
全部0条评论
快来发表一下你的评论吧 !