Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/tests/adapter/unittest/
H A Ddsoftbus_aes_crypto_test.cpp63 ret = SoftBusGenerateHmacHash(&randomKey, rootKey, rootKeyLen, hash, hashLen);
88 ret = SoftBusGenerateHmacHash(nullptr, rootKey, rootKeyLen, hash, hashLen);
90 ret = SoftBusGenerateHmacHash(&randomKey, nullptr, rootKeyLen, hash, hashLen);
92 ret = SoftBusGenerateHmacHash(&randomKey, rootKey, rootKeyLen, nullptr, hashLen);
119 ret = SoftBusGenerateHmacHash(&randomKey, rootKey, rootKeyLen1, hash, hashLen);
121 ret = SoftBusGenerateHmacHash(&randomKey, rootKey, rootKeyLen, hash, hashLen1);
/ohos5.0/foundation/communication/dsoftbus/adapter/common/mbedtls/
H A Dsoftbus_aes_encrypt_virtual.c19 int32_t SoftBusGenerateHmacHash( in SoftBusGenerateHmacHash() function
/ohos5.0/foundation/communication/dsoftbus/adapter/common/include/
H A Dsoftbus_aes_encrypt.h55 int32_t SoftBusGenerateHmacHash(
/ohos5.0/foundation/communication/dsoftbus/adapter/common/openssl/
H A Dsoftbus_aes_encrypt.c39 int32_t SoftBusGenerateHmacHash( in SoftBusGenerateHmacHash() function
129 …if (SoftBusGenerateHmacHash(randomKey, rootKey->key, rootKey->len, result, sizeof(result)) != SOFT… in RootKeyGenerateIvAndSessionKey()
230 … if (SoftBusGenerateHmacHash(&key, random, sizeof(random), result, SHA256_MAC_LEN) != SOFTBUS_OK) { in SoftBusAesCfbEncrypt()
/ohos5.0/foundation/communication/dsoftbus/tests/adapter/fuzztest/softbusaescrypto_fuzzer/
H A Dsoftbusaescrypto_fuzzer.cpp31 SoftBusGenerateHmacHash(&randomKey, data, size, hash, SHA256_MAC_LEN); in SoftBusGenerateHmacHashFuzzTest()