Searched refs:keyStorageType (Results 1 – 2 of 2) sorted by relevance
/ohos5.0/base/security/huks/interfaces/kits/liteapi/src/ |
H A D | hks_lite_api.cpp | 150 JSIValue keyStorageType = JSI::CreateObject(); in CreateHuksKeyStorageType() local 152 AddInt32PropertyInLite(keyStorageType, "HUKS_STORAGE_TEMP", HKS_STORAGE_TEMP); in CreateHuksKeyStorageType() 153 AddInt32PropertyInLite(keyStorageType, "HUKS_STORAGE_PERSISTENT", HKS_STORAGE_PERSISTENT); in CreateHuksKeyStorageType() 155 return keyStorageType; in CreateHuksKeyStorageType()
|
/ohos5.0/base/security/huks/interfaces/kits/napi/src/ |
H A D | huks_napi.cpp | 334 napi_value keyStorageType = nullptr; in CreateHuksKeyStorageType() local 335 NAPI_CALL(env, napi_create_object(env, &keyStorageType)); in CreateHuksKeyStorageType() 337 AddInt32Property(env, keyStorageType, "HUKS_STORAGE_TEMP", HKS_STORAGE_TEMP); in CreateHuksKeyStorageType() 338 AddInt32Property(env, keyStorageType, "HUKS_STORAGE_PERSISTENT", HKS_STORAGE_PERSISTENT); in CreateHuksKeyStorageType() 339 …AddInt32Property(env, keyStorageType, "HUKS_STORAGE_ONLY_USED_IN_HUKS", HKS_STORAGE_ONLY_USED_IN_H… in CreateHuksKeyStorageType() 340 …AddInt32Property(env, keyStorageType, "HUKS_STORAGE_KEY_EXPORT_ALLOWED", HKS_STORAGE_ALLOW_KEY_EXP… in CreateHuksKeyStorageType() 342 return keyStorageType; in CreateHuksKeyStorageType()
|