Home
last modified time | relevance | path

Searched refs:AES_256_GCM (Results 1 – 25 of 36) sorted by relevance

12

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/
H A Ddistributeddb_storage_data_operation_test.cpp710 …EXPECT_EQ(SQLiteUtils::SetKeyInner(db, CipherType::AES_256_GCM, g_passwd, DBConstant::DEFAULT_ITER…
725 …EXPECT_EQ(SQLiteUtils::SetKeyInner(db, CipherType::AES_256_GCM, g_passwd, DBConstant::DEFAULT_ITER…
748 …EXPECT_EQ(SQLiteUtils::SetKeyInner(db, CipherType::AES_256_GCM, g_passwd, DBConstant::DEFAULT_ITER…
770 …EXPECT_EQ(SQLiteUtils::AttachNewDatabaseInner(db, CipherType::AES_256_GCM, g_passwd, fileUrl, atta…
795 …EXPECT_EQ(SQLiteUtils::SetKeyInner(db, CipherType::AES_256_GCM, g_passwd, DBConstant::DEFAULT_ITER…
816 …EXPECT_EQ(SQLiteUtils::AttachNewDatabase(db, CipherType::AES_256_GCM, g_passwd, fileUrl, attachNam…
836 SQLiteUtils::AttachNewDatabase(db, CipherType::AES_256_GCM, g_passwd, fileUrl, attachName);
842 …EXPECT_EQ(SQLiteUtils::SetKey(db, CipherType::AES_256_GCM, g_passwd, DBConstant::DEFAULT_ITER_TIME…
853 …EXPECT_NE(SQLiteUtils::AttachNewDatabase(db, CipherType::AES_256_GCM, g_passwd2, fileUrl, attachNa…
875 …EXPECT_EQ(SQLiteUtils::SetKeyInner(db, CipherType::AES_256_GCM, g_passwd, DBConstant::DEFAULT_ITER…
[all …]
H A Ddistributeddb_relational_encrypted_db_test.cpp502 option = { nullptr, false, true, CipherType::AES_256_GCM, g_correctPasswd, DEFAULT_ITER };
H A Ddistributeddb_storage_transaction_record_test.cpp65 int errCode = g_transaction->Initialize(g_storeDir, false, CipherType::AES_256_GCM, passwd); in SetUp()
/ohos5.0/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/mock/include/
H A Drdb_store_config.h102 AES_256_GCM = 0, enumerator
119 int32_t encryptAlgo = EncryptAlgo::AES_256_GCM;
131 static constexpr EncryptAlgo DB_DEFAULT_ENCRYPT_ALGO = AES_256_GCM;
/ohos5.0/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/
H A Drdb_store_config.h184 AES_256_GCM = 0, enumerator
214 int32_t encryptAlgo = EncryptAlgo::AES_256_GCM;
242 static constexpr EncryptAlgo DB_DEFAULT_ENCRYPT_ALGO = AES_256_GCM;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/
H A Dsingle_ver_utils.h38 CipherType cipherType = CipherType::AES_256_GCM;
H A Dikvdb_commit_storage.h35 CipherType cipherType = CipherType::AES_256_GCM;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/multiver/
H A Dikvdb_multi_ver_data_storage.h45 CipherType cipherType = CipherType::AES_256_GCM;
H A Dmulti_ver_kvdata_storage.h49 CipherType cipherType = CipherType::AES_256_GCM;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/kv/
H A Dkvdb_properties.cpp42 : cipherType_(CipherType::AES_256_GCM) in KvDBProperties()
/ohos5.0/foundation/distributeddatamgr/kv_store/kvstoremock/frameworks/innerkitsimpl/kvdb/src/
H A Dstore_factory.cpp136 dbOption.cipher = DistributedDB::CipherType::AES_256_GCM; in GetDBOption()
/ohos5.0/docs/zh-cn/application-dev/database/
H A Ddata-encryption.md118 … encryptionAlgo: relationalStore.EncryptionAlgo.AES_256_CBC, // 可选参数,加密/解密算法。如不指定,默认算法为AES_256_GCM
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/include/
H A Dtypes_export.h49 AES_256_GCM, // AES-256-GCM enumerator
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Dparam_check_utils.cpp103 if (cipher != CipherType::DEFAULT && cipher != CipherType::AES_256_GCM) { in CheckEncryptedParameter()
H A Ddb_common.cpp458 ((srcType == CipherType::DEFAULT || srcType == CipherType::AES_256_GCM) && in IsSameCipher()
459 (inputType == CipherType::DEFAULT || inputType == CipherType::AES_256_GCM))) { in IsSameCipher()
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Dsqlite_utils.cpp342 case EncryptAlgo::AES_256_GCM: in EncryptAlgoDescription()
H A Drdb_store_config.cpp653 if (encryptAlgo != AES_256_CBC && encryptAlgo != AES_256_GCM) { in IsValid()
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/src/
H A Dnapi_rdb_const_properties.cpp219 SET_NAPI_PROPERTY(encryptionAlgo, "AES_256_GCM", int32_t(NativeRdb::EncryptAlgo::AES_256_GCM)); in ExportEncryptionAlgo()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/
H A Dstore_factory.cpp183 dbOption.cipher = DistributedDB::CipherType::AES_256_GCM; in GetDBOption()
/ohos5.0/docs/en/application-dev/database/
H A Ddata-encryption.md118 …ecryption algorithm. If this parameter is not specified, the default algorithm AES_256_GCM is used.
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/test/
H A Dstore_factory_test.cpp168 dbOption.cipher = DistributedDB::CipherType::AES_256_GCM; in GetOption()
/ohos5.0/foundation/distributeddatamgr/relational_store/test/js/relationalstore/unittest/src/
H A DRdbstoreEncryptionJsunit.test.js54 encryptionAlgo: data_relationalStore.EncryptionAlgo.AES_256_GCM,
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/moduletest/src/
H A Ddistributeddb_nb_autolaunch_test.cpp260 option.cipher = CipherType::AES_256_GCM;
H A Ddistributeddb_nb_enable_sync_by_closed_db_test.cpp254 option.cipher = CipherType::AES_256_GCM;
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/
H A Dkvdb_general_store_test.cpp256 EXPECT_EQ(dbOption.cipher, DistributedDB::CipherType::AES_256_GCM);

12