Home
last modified time | relevance | path

Searched refs:SoftBusDecryptData (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/adapter/unittest/
H A Ddsoftbus_crypto_test.cpp447 ret = SoftBusDecryptData(&cipherKey, (unsigned char*)encryptData,
475 ret = SoftBusDecryptData(nullptr, (unsigned char*)encryptData,
478 ret = SoftBusDecryptData(&cipherKey, nullptr,
481 ret = SoftBusDecryptData(&cipherKey, (unsigned char*)encryptData,
508 ret = SoftBusDecryptData(&cipherKey, (unsigned char*)encryptData,
511 ret = SoftBusDecryptData(&cipherKey, (unsigned char*)encryptData,
/ohos5.0/foundation/communication/dsoftbus/tests/adapter/fuzztest/softbusdecryptdata_fuzzer/
H A Dsoftbusdecryptdata_fuzzer.cpp30 SoftBusDecryptData(&cipherKey, reinterpret_cast<const unsigned char*>(data), size, in SoftBusDecryptDataTest()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/include/
H A Dsoftbus_adapter_crypto.h83 int32_t SoftBusDecryptData(AesGcmCipherKey *key, const unsigned char *input, uint32_t inLen,
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/utils/src/
H A Dlnn_common_utils.c104 int32_t ret = SoftBusDecryptData(&cipherKey, in->data, in->dataLen, decData, &decDataLen); in LnnDecryptAesGcm()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/mbedtls/
H A Dsoftbus_adapter_crypto.c311 int32_t SoftBusDecryptData(AesGcmCipherKey *cipherKey, const unsigned char *input, uint32_t inLen, in SoftBusDecryptData() function
335 return SoftBusDecryptData(cipherKey, input, inLen, decryptData, decryptLen); in SoftBusDecryptDataWithSeq()
/ohos5.0/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/stream/adaptor/src/
H A Dstream_adaptor.cpp158 int ret = SoftBusDecryptData(&cipherKey, reinterpret_cast<const unsigned char *>(in), inLen, in Decrypt()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/openssl/
H A Dsoftbus_adapter_crypto.c435 int32_t SoftBusDecryptData(AesGcmCipherKey *cipherKey, const unsigned char *input, uint32_t inLen, in SoftBusDecryptData() function
459 return SoftBusDecryptData(cipherKey, input, inLen, decryptData, decryptLen); in SoftBusDecryptDataWithSeq()
/ohos5.0/foundation/communication/dsoftbus/sdk/transmission/trans_channel/tcp_direct/src/
H A Dclient_trans_tcp_direct_message.c81 …int32_t ret = SoftBusDecryptData(&cipherKey, (unsigned char*)in, inLen, (unsigned char*)out, outLe… in TransTdcDecrypt()
/ohos5.0/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/stream/libsoftbus_stream/
H A Dvtp_stream_socket.cpp1583 …int ret = SoftBusDecryptData(&cipherKey, (unsigned char *)in, inLen, (unsigned char *)out, (unsign… in Decrypt()