Home
last modified time | relevance | path

Searched refs:key_ptr (Results 1 – 6 of 6) sorted by relevance

/NetX-Duo-v6.2.1/crypto_libraries/src/
Dnx_crypto_hmac.c76 UCHAR *key_ptr, UINT key_length, in _nx_crypto_hmac() argument
81 _nx_crypto_hmac_initialize(hmac_metadata, key_ptr, key_length); in _nx_crypto_hmac()
140 NX_CRYPTO_KEEP UINT _nx_crypto_hmac_initialize(NX_CRYPTO_HMAC *hmac_metadata, UCHAR *key_ptr, UINT … in _nx_crypto_hmac_initialize() argument
151 hmac_metadata -> crypto_update(hmac_metadata -> context, key_ptr, key_length); in _nx_crypto_hmac_initialize()
155 key_ptr = temp_key; in _nx_crypto_hmac_initialize()
175 …NX_CRYPTO_MEMCPY(hmac_metadata -> k_ipad, key_ptr, key_length); /* Use case of memcpy is verified.… in _nx_crypto_hmac_initialize()
177 …NX_CRYPTO_MEMCPY(hmac_metadata -> k_opad, key_ptr, key_length); /* Use case of memcpy is verified.… in _nx_crypto_hmac_initialize()
Dnx_crypto_des.c486 ULONG *key_ptr; in _nx_crypto_des_process_block() local
514 key_ptr = keys; in _nx_crypto_des_process_block()
522 temp = *key_ptr++ ^ right; in _nx_crypto_des_process_block()
525 temp = *key_ptr++ ^ ((right << 28) | (right >> 4)); in _nx_crypto_des_process_block()
529 temp = *key_ptr++ ^ left; in _nx_crypto_des_process_block()
532 temp = *key_ptr++ ^ ((left << 28) | (left >> 4)); in _nx_crypto_des_process_block()
/NetX-Duo-v6.2.1/addons/snmp/
Dnx_des.c474 ULONG *key_ptr; in _nx_des_process_block() local
502 key_ptr = keys; in _nx_des_process_block()
510 temp = *key_ptr++ ^ right; in _nx_des_process_block()
513 temp = *key_ptr++ ^ ((right << 28) | (right >> 4)); in _nx_des_process_block()
517 temp = *key_ptr++ ^ left; in _nx_des_process_block()
520 temp = *key_ptr++ ^ ((left << 28) | (left >> 4)); in _nx_des_process_block()
/NetX-Duo-v6.2.1/crypto_libraries/inc/
Dnx_crypto_hmac.h85 UCHAR *key_ptr, UINT key_length,
88 UINT _nx_crypto_hmac_initialize(NX_CRYPTO_HMAC *crypto_matadata, UCHAR *key_ptr, UINT key_length);
/NetX-Duo-v6.2.1/addons/azure_iot/
Dnx_azure_iot.h312 const UCHAR *key_ptr, UINT key_size,
Dnx_azure_iot.c752 const UCHAR *key_ptr, UINT key_size, in nx_azure_iot_base64_hmac_sha256_calculate() argument
766 status = _nx_utility_base64_decode((UCHAR *)key_ptr, key_size, in nx_azure_iot_base64_hmac_sha256_calculate()