Home
last modified time | relevance | path

Searched defs:hash (Results 1 – 10 of 10) sorted by relevance

/NetX-Duo-v6.3.0/addons/azure_iot/azure_iot_security_module/iot-security-module-core/inc/asc_security_core/utils/collection/
Dhashset.h277 unsigned int hash = 5381; in hashset_buffer2hash() local
/NetX-Duo-v6.3.0/crypto_libraries/src/
Dnx_crypto_hmac.c440 NX_CRYPTO_METHOD *hash; in _nx_crypto_hmac_hash_initialize() local
518 NX_CRYPTO_METHOD *hash; in _nx_crypto_hmac_hash_update() local
594 NX_CRYPTO_METHOD *hash; in _nx_crypto_hmac_hash_digest_calculate() local
Dnx_crypto_ecdsa.c77 NX_CRYPTO_KEEP UINT _nx_crypto_ecdsa_sign(NX_CRYPTO_EC *curve, UCHAR *hash, UINT hash_length, in _nx_crypto_ecdsa_sign()
316 NX_CRYPTO_KEEP UINT _nx_crypto_ecdsa_verify(NX_CRYPTO_EC *curve, UCHAR *hash, UINT hash_length, in _nx_crypto_ecdsa_verify()
/NetX-Duo-v6.3.0/addons/azure_iot/azure_iot_security_module/iot-security-module-core/deps/flatcc/include/flatcc/
Dflatcc_identifier.h47 uint32_t hash = UINT32_C(2166136261); in flatbuffers_type_hash_from_name() local
Dflatcc_builder.h1128 #define FLATCC_BUILDER_INIT_VT_HASH(hash) { (hash) = (uint32_t)0x2f693b52UL; } argument
1131 #define FLATCC_BUILDER_UPDATE_VT_HASH(hash, id, offset) \ argument
1136 #define FLATCC_BUILDER_BUCKET_VT_HASH(hash, width) (((uint32_t)(hash)) >> (32 - (width))) argument
1148 #define FLATCC_BUILDER_INIT_VT_HASH(hash) { (hash) = 5381; } argument
1151 #define FLATCC_BUILDER_UPDATE_VT_HASH(hash, id, offset) \ argument
1155 #define FLATCC_BUILDER_BUCKET_VT_HASH(hash, width) (((1 << (width)) - 1) & (hash)) argument
/NetX-Duo-v6.3.0/nx_secure/src/
Dnx_secure_process_server_key_exchange.c34 static UCHAR hash[64]; /* We concatenate MD5 and SHA-1 hashes into this buffer, OR SHA-256, SHA-384… variable
Dnx_secure_tls_ecc_generate_keys.c33 static UCHAR hash[64]; /* We concatenate MD5 and SHA-1 hashes into this buffer, OR SHA-256, SHA-384… variable
/NetX-Duo-v6.3.0/addons/azure_iot/azure_iot_security_module/iot-security-module-core/inc/asc_security_core/utils/
Distream.h47 const char *hash; // Pointer on previous allocated hash member
/NetX-Duo-v6.3.0/addons/azure_iot/azure_iot_security_module/iot-security-module-core/src/utils/collection/
Dhashtable.c200 unsigned int hash = 5381; in hashtable_buffer2hash() local
/NetX-Duo-v6.3.0/addons/azure_iot/azure_iot_security_module/iot-security-module-core/deps/flatcc/src/runtime/
Dbuilder.c376 static inline uoffset_t *lookup_ht(flatcc_builder_t *B, uint32_t hash) in lookup_ht()