Home
last modified time | relevance | path

Searched defs:cipherText (Results 1 – 17 of 17) sorted by relevance

/foundation/communication/wifi/wifi/base/security_utils/src/
Dwifi_openssl_utils.cpp66 struct AesCipherInfo *info, uint8_t *cipherText, int *cipherTextLen) in OpensslAesEncrypt()
125 int WifiOpensslUtils::OpensslAesDecrypt(const uint8_t *cipherText, int cipherTextLen, in OpensslAesDecrypt()
/foundation/communication/dsoftbus/adapter/common/openssl/
Dsoftbus_adapter_crypto.c102 unsigned char *cipherText, uint32_t cipherTextLen) in PackIvAndTag()
126 uint32_t plainTextSize, unsigned char *cipherText, uint32_t cipherTextLen) in SslAesGcmEncrypt()
172 static int32_t SslAesGcmDecrypt(const AesGcmCipherKey *cipherkey, const unsigned char *cipherText, in SslAesGcmDecrypt()
544 static int32_t PackTag(EVP_CIPHER_CTX *ctx, uint32_t dataLen, unsigned char *cipherText, uint32_t c… in PackTag()
565 uint32_t plainTextSize, unsigned char *cipherText, uint32_t cipherTextLen) in SslAesGcm128Encrypt()
628 …ic int32_t SslAesGcm128Decryp(const AesGcm128CipherKey *cipherkey, const unsigned char *cipherText, in SslAesGcm128Decryp()
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_base/security_utils/
Dwifi_openssl_utils_test.cpp51 uint8_t cipherText[CIPHER_TEXT_MAX_LEN] = {0x40, 0x16, 0x28, 0x3e, 0x96, 0xd9, 0x43, 0x29, 0x4d, 0x… variable
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb_crypt/
Drelational_store_crypt.cpp131 const struct HksBlob *cipherText, struct HksBlob *plainText, RDBCryptoFault &rdbFault) in HksDecryptThreeStage()
149 const struct HksBlob *plainText, struct HksBlob *cipherText, RDBCryptoFault &rdbFault) in HksEncryptThreeStage()
309 struct HksBlob cipherText = { uint32_t(encryptedKey.size()), encryptedKey.data() }; in Encrypt() local
/foundation/distributedhardware/device_manager/services/implementation/src/cryptomgr/
Dcrypto_mgr.cpp126 uint32_t plainTextSize, unsigned char *cipherText, uint32_t cipherTextLen) in MbedAesGcmEncrypt()
248 …2_t CryptoMgr::MbedAesGcmDecrypt(const AesGcmCipherKey *cipherKey, const unsigned char *cipherText, in MbedAesGcmDecrypt()
/foundation/communication/dsoftbus/adapter/common/mbedtls/
Dsoftbus_adapter_crypto.c79 uint32_t plainTextSize, unsigned char *cipherText, uint32_t cipherTextLen) in MbedAesGcmEncrypt()
120 static int32_t MbedAesGcmDecrypt(const AesGcmCipherKey *cipherKey, const unsigned char *cipherText, in MbedAesGcmDecrypt()
/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/
Drdb_encrypt_upgrade_test.cpp164 const struct HksBlob *plainText, struct HksBlob *cipherText) in HksEncryptThreeStage()
213 struct HksBlob cipherText = { uint32_t(encryptedKey.size()), encryptedKey.data() }; in EncryptV0() local
/foundation/distributedhardware/device_manager/test/servicesfuzztest/cryptomgr_fuzzer/
Dcrypto_mgr_fuzzer.cpp88 unsigned char *cipherText = nullptr; in CryptoMgrFirstFuzzTest() local
/foundation/communication/dsoftbus/core/bus_center/lnn/net_ledger/common/src/
Dlnn_huks_utils.c601 struct HksBlob cipherText = {inData->size, cipher}; in LnnEncryptDataByHuks() local
683 struct HksBlob cipherText = {inData->size, cipher}; in LnnCeEncryptDataByHuks() local
/foundation/communication/dsoftbus/core/adapter/huks/src/
Dsoftbus_rsa_encrypt.c294 uint8_t *cipherText = (uint8_t *)SoftBusCalloc(cipherTextLen); in SoftBusRsaEncrypt() local
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/crypto/
Dcrypto_manager.cpp263 struct HksBlob cipherText = { sizeof(cipherBuf), cipherBuf }; in Encrypt() local
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/test/
Dsecurity_manager_test.cpp140 struct HksBlob cipherText = { sizeof(cipherBuf), cipherBuf }; in Encrypt() local
Dstore_factory_test.cpp147 struct HksBlob cipherText = { sizeof(cipherBuf), cipherBuf }; in Encrypt() local
/foundation/distributedhardware/device_manager/services/implementation/src/authentication_v2/
Ddm_auth_message_processor.cpp991 std::string cipherText; in CreateMessageReqCredExchange() local
1016 std::string cipherText; in CreateMessageRspCredExchange() local
1060 std::string cipherText; in CreateMessageReqSKDerive() local
1083 std::string cipherText; in CreateMessageRspSKDerive() local
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/
Dsecurity_manager.cpp305 struct HksBlob cipherText = { sizeof(cipherBuf), cipherBuf }; in Encrypt() local
/foundation/distributedhardware/device_manager/test/unittest/
DUTTest_auth_message_processor.cpp47 …int32_t MbedTlsEncrypt(const uint8_t *plainText, int32_t plainTextLen, uint8_t *cipherText, int32_… in MbedTlsEncrypt()
56 …int32_t MbedTlsDecrypt(const uint8_t *cipherText, int32_t cipherTextLen, uint8_t *plainText, int32… in MbedTlsDecrypt()
/foundation/filemanagement/storage_service/services/storage_daemon/crypto/src/
Dhuks_master.cpp418 static int AppendAeTag(KeyBlob &cipherText, HksParamSet *paramSet) in AppendAeTag()