Home
last modified time | relevance | path

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

/hal_espressif-latest/components/wpa_supplicant/src/tls/
Dtlsv1_common.c242 crypto_hash_update(verify->md5_client, buf, len); in tls_verify_hash_add()
243 crypto_hash_update(verify->sha1_client, buf, len); in tls_verify_hash_add()
246 crypto_hash_update(verify->md5_server, buf, len); in tls_verify_hash_add()
247 crypto_hash_update(verify->sha1_server, buf, len); in tls_verify_hash_add()
250 crypto_hash_update(verify->md5_cert, buf, len); in tls_verify_hash_add()
251 crypto_hash_update(verify->sha1_cert, buf, len); in tls_verify_hash_add()
255 crypto_hash_update(verify->sha256_client, buf, len); in tls_verify_hash_add()
257 crypto_hash_update(verify->sha256_server, buf, len); in tls_verify_hash_add()
259 crypto_hash_update(verify->sha256_cert, buf, len); in tls_verify_hash_add()
369 crypto_hash_update(ctx, client_random, TLS_RANDOM_LEN); in tlsv12_key_x_server_params_hash()
[all …]
Dtlsv1_record.c214 crypto_hash_update(hmac, rl->write_seq_num, TLS_SEQ_NUM_LEN); in tlsv1_record_send()
216 crypto_hash_update(hmac, ct_start, TLS_RECORD_HEADER_LEN); in tlsv1_record_send()
217 crypto_hash_update(hmac, payload, payload_len); in tlsv1_record_send()
445 crypto_hash_update(hmac, rl->read_seq_num, TLS_SEQ_NUM_LEN); in tlsv1_record_receive()
447 crypto_hash_update(hmac, in_data - TLS_RECORD_HEADER_LEN, 3); in tlsv1_record_receive()
449 crypto_hash_update(hmac, len, 2); in tlsv1_record_receive()
450 crypto_hash_update(hmac, out_data, plen); in tlsv1_record_receive()
/hal_espressif-latest/components/wpa_supplicant/src/crypto/
Dcrypto_internal.c143 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) in crypto_hash_update() function
Dcrypto.h195 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len);
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/crypto/
Dcrypto_mbedtls.c202 void crypto_hash_update(struct crypto_hash *crypto_ctx, const u8 *data, size_t len) in crypto_hash_update() function