Home
last modified time | relevance | path

Searched refs:DecryptKeyBlob (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/mock/
H A Dbase_key_mock.h36 virtual bool DecryptKeyBlob(const UserAuth &, const std::string &, KeyBlob &, KeyBlob &) = 0;
56 MOCK_METHOD4(DecryptKeyBlob, bool(const UserAuth &, const std::string &, KeyBlob &, KeyBlob &));
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/mock/
H A Dbase_key_mock.cpp88 bool BaseKey::DecryptKeyBlob(const UserAuth &auth, const std::string &keyPath, KeyBlob &planKey, in DecryptKeyBlob() function in BaseKey
94 return IBaseKeyMoc::baseKeyMoc->DecryptKeyBlob(auth, keyPath, planKey, decryptedKey); in DecryptKeyBlob()
/ohos5.0/base/security/huks/services/huks_standard/huks_engine/main/core/src/
H A Dhks_keyblob.c274 static int32_t DecryptKeyBlob(const struct HksBlob *aad, struct HksParamSet *paramSet) in DecryptKeyBlob() function
426 ret = DecryptKeyBlob(&aad, keyBlobParamSet); in HksGenerateKeyNode()
602 return DecryptKeyBlob(aad, paramSet); in HksDecryptKeyBlob()
H A Dhks_keyblob_lite.c188 static int32_t DecryptKeyBlob(const struct HksBlob *cipherKey, struct HksBlob *rawKey) in DecryptKeyBlob() function
282 ret = DecryptKeyBlob(key, &tmpKey); in GetRawKeyMaterial()
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/src/
H A Dfscrypt_key_v1.cpp237 if (DecryptKeyBlob(auth, candidate, eSecretFBE, decryptedKey)) { in DoDecryptClassE()
258 if (DecryptKeyBlob(auth, dir_ + "/" + it, eSecretFBE, decryptedKey)) { in DoDecryptClassE()
H A Dkey_backup.cpp146 if (baseKey->DecryptKeyBlob(auth, keyDir + PATH_LATEST, planKey, decryptedKey)) { in TryRestoreUeceKey()
152 if (baseKey->DecryptKeyBlob(auth, backupDir + PATH_LATEST, planKey, decryptedKey)) { in TryRestoreUeceKey()
H A Dbase_key.cpp924 bool BaseKey::DecryptKeyBlob(const UserAuth &auth, const std::string &keyPath, KeyBlob &planKey, in StoreKey() function in OHOS::StorageDaemon::BaseKey
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/crypto/
H A Dbase_key.h65 …bool DecryptKeyBlob(const UserAuth &auth, const std::string &keyPath, KeyBlob &planKey, KeyBlob &d…