Searched refs:hmacAlgo (Results 1 - 10 of 10) sorted by relevance
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/src/ |
H A D | napi_rdb_const_properties.cpp | 227 napi_value hmacAlgo = nullptr; in ExportHmacAlgo() local 228 napi_create_object(env, &hmacAlgo); in ExportHmacAlgo() 230 SET_NAPI_PROPERTY(hmacAlgo, "SHA1", int32_t(NativeRdb::HmacAlgo::SHA1)); in ExportHmacAlgo() 231 SET_NAPI_PROPERTY(hmacAlgo, "SHA256", int32_t(NativeRdb::HmacAlgo::SHA256)); in ExportHmacAlgo() 232 SET_NAPI_PROPERTY(hmacAlgo, "SHA512", int32_t(NativeRdb::HmacAlgo::SHA512)); in ExportHmacAlgo() 233 napi_object_freeze(env, hmacAlgo); in ExportHmacAlgo() 234 return hmacAlgo; in ExportHmacAlgo()
|
H A D | napi_rdb_js_utils.cpp | 331 NAPI_CALL_RETURN_ERR(GetNamedProperty(env, input, "hmacAlgo", cryptoParam.hmacAlgo, true), napi_invalid_arg); in Convert2Value()
|
/foundation/distributeddatamgr/relational_store/test/js/relationalstore/unittest/src/ |
H A D | RdbstoreEncryptionJsunit.test.js | 53 hmacAlgo: data_relationalStore.HmacAlgo.SHA256,
67 hmacAlgo: data_relationalStore.HmacAlgo.SHA512,
417 hmacAlgo: data_relationalStore.HmacAlgo.SHA512,
447 hmacAlgo: data_relationalStore.HmacAlgo.SHA512,
477 hmacAlgo: data_relationalStore.HmacAlgo.SHA512,
507 hmacAlgo: data_relationalStore.HmacAlgo.SHA512,
631 hmacAlgo: data_relationalStore.HmacAlgo.SHA512,
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/ |
H A D | sqlite_utils.h | 63 static const char *HmacAlgoDescription(int32_t hmacAlgo);
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/ |
H A D | rdb_store_config.cpp | 621 if (hmacAlgo < SHA1 || hmacAlgo > SHA512) { in IsValid()
|
H A D | sqlite_utils.cpp | 304 const char *SqliteUtils::HmacAlgoDescription(int32_t hmacAlgo) in HmacAlgoDescription() argument 306 HmacAlgo hmacEnum = static_cast<HmacAlgo>(hmacAlgo); in HmacAlgoDescription()
|
H A D | rdb_store_impl.cpp | 1571 config.GetCryptoParam().encryptAlgo, config.GetCryptoParam().hmacAlgo, config.GetCryptoParam().kdfAlgo, in SetDefaultEncryptSql() 1579 config.GetCryptoParam().encryptAlgo, config.GetCryptoParam().hmacAlgo, config.GetCryptoParam().kdfAlgo, in SetDefaultEncryptSql() 1615 SqliteUtils::HmacAlgoDescription(config.GetCryptoParam().hmacAlgo) + std::string(GlobalExpr::ALGO_SUFFIX); in SetDefaultEncryptAlgo()
|
H A D | sqlite_connection.cpp | 527 config.GetCryptoParam().encryptAlgo, config.GetCryptoParam().hmacAlgo, config.GetCryptoParam().kdfAlgo, in SetEncryptAgo() 549 SqliteUtils::HmacAlgoDescription(config.GetCryptoParam().hmacAlgo) + in SetEncryptAgo()
|
/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/mock/include/ |
H A D | rdb_store_config.h | 120 int32_t hmacAlgo = HmacAlgo::SHA256; member
|
/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/ |
H A D | rdb_store_config.h | 215 int32_t hmacAlgo = HmacAlgo::SHA256; member
|
Completed in 14 milliseconds