Searched refs:key_ptr (Results 1 – 6 of 6) sorted by relevance
/NetX-Duo-v6.3.0/addons/snmp/ |
D | nx_des.c | 475 ULONG *key_ptr; in _nx_des_process_block() local 503 key_ptr = keys; in _nx_des_process_block() 511 temp = *key_ptr++ ^ right; in _nx_des_process_block() 514 temp = *key_ptr++ ^ ((right << 28) | (right >> 4)); in _nx_des_process_block() 518 temp = *key_ptr++ ^ left; in _nx_des_process_block() 521 temp = *key_ptr++ ^ ((left << 28) | (left >> 4)); in _nx_des_process_block()
|
/NetX-Duo-v6.3.0/crypto_libraries/src/ |
D | nx_crypto_hmac.c | 77 UCHAR *key_ptr, UINT key_length, in _nx_crypto_hmac() argument 82 _nx_crypto_hmac_initialize(hmac_metadata, key_ptr, key_length); in _nx_crypto_hmac() 141 NX_CRYPTO_KEEP UINT _nx_crypto_hmac_initialize(NX_CRYPTO_HMAC *hmac_metadata, UCHAR *key_ptr, UINT … in _nx_crypto_hmac_initialize() argument 152 hmac_metadata -> crypto_update(hmac_metadata -> context, key_ptr, key_length); in _nx_crypto_hmac_initialize() 156 key_ptr = temp_key; in _nx_crypto_hmac_initialize() 176 …NX_CRYPTO_MEMCPY(hmac_metadata -> k_ipad, key_ptr, key_length); /* Use case of memcpy is verified.… in _nx_crypto_hmac_initialize() 178 …NX_CRYPTO_MEMCPY(hmac_metadata -> k_opad, key_ptr, key_length); /* Use case of memcpy is verified.… in _nx_crypto_hmac_initialize()
|
D | nx_crypto_des.c | 487 ULONG *key_ptr; in _nx_crypto_des_process_block() local 515 key_ptr = keys; in _nx_crypto_des_process_block() 523 temp = *key_ptr++ ^ right; in _nx_crypto_des_process_block() 526 temp = *key_ptr++ ^ ((right << 28) | (right >> 4)); in _nx_crypto_des_process_block() 530 temp = *key_ptr++ ^ left; in _nx_crypto_des_process_block() 533 temp = *key_ptr++ ^ ((left << 28) | (left >> 4)); in _nx_crypto_des_process_block()
|
/NetX-Duo-v6.3.0/crypto_libraries/inc/ |
D | nx_crypto_hmac.h | 86 UCHAR *key_ptr, UINT key_length, 89 UINT _nx_crypto_hmac_initialize(NX_CRYPTO_HMAC *crypto_matadata, UCHAR *key_ptr, UINT key_length);
|
/NetX-Duo-v6.3.0/addons/azure_iot/ |
D | nx_azure_iot.h | 322 const UCHAR *key_ptr, UINT key_size,
|
D | nx_azure_iot.c | 777 const UCHAR *key_ptr, UINT key_size, in nx_azure_iot_base64_hmac_sha256_calculate() argument 791 status = _nx_utility_base64_decode((UCHAR *)key_ptr, key_size, in nx_azure_iot_base64_hmac_sha256_calculate()
|