Home
last modified time | relevance | path

Searched refs:ActiveKeyExt (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/crypto/
H A Dfscrypt_key_v1_ext.h34 bool ActiveKeyExt(uint32_t flag, uint8_t *iv, uint32_t size, uint32_t &elType);
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/mock/
H A Dfscrypt_key_v1_ext_mock.cpp32 bool FscryptKeyV1Ext::ActiveKeyExt(uint32_t flag, uint8_t *iv, uint32_t size, uint32_t &elType) in ActiveKeyExt() function in FscryptKeyV1Ext
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/fscrypt_key_v1_ext_test/
H A Dfscrypt_key_v1_ext_test.cpp165 EXPECT_EQ(ext.ActiveKeyExt(0, &iv, size, elType), true);
170 EXPECT_EQ(ext.ActiveKeyExt(0, &iv, size, elType), false);
175 EXPECT_EQ(ext.ActiveKeyExt(0, &iv, size, elType), true);
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/src/
H A Dfscrypt_key_v1_ext.cpp80 bool FscryptKeyV1Ext::ActiveKeyExt(uint32_t flag, uint8_t *iv, uint32_t size, uint32_t &elType) in ActiveKeyExt() function in OHOS::StorageDaemon::FscryptKeyV1Ext
H A Dfscrypt_key_v1.cpp43 if (!fscryptV1Ext.ActiveKeyExt(flag, keyInfo_.key.data.get(), keyInfo_.key.size, elType)) { in ActiveKey()