Searched refs:crypto_hash_update (Results 1 – 8 of 8) sorted by relevance
/external/wpa_supplicant_8/src/tls/ |
D | tlsv1_common.c | 230 crypto_hash_update(verify->md5_client, buf, len); in tls_verify_hash_add() 231 crypto_hash_update(verify->sha1_client, buf, len); in tls_verify_hash_add() 234 crypto_hash_update(verify->md5_server, buf, len); in tls_verify_hash_add() 235 crypto_hash_update(verify->sha1_server, buf, len); in tls_verify_hash_add() 238 crypto_hash_update(verify->md5_cert, buf, len); in tls_verify_hash_add() 239 crypto_hash_update(verify->sha1_cert, buf, len); in tls_verify_hash_add() 243 crypto_hash_update(verify->sha256_client, buf, len); in tls_verify_hash_add() 245 crypto_hash_update(verify->sha256_server, buf, len); in tls_verify_hash_add() 247 crypto_hash_update(verify->sha256_cert, buf, len); in tls_verify_hash_add()
|
D | tlsv1_record.c | 214 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()
|
/external/wpa_supplicant_8/src/eap_common/ |
D | eap_pwd_common.c | 28 crypto_hash_update(hash, data, len); in eap_pwd_h_update() 59 crypto_hash_update(hash, digest, SHA256_MAC_LEN); in eap_pwd_kdf() 60 crypto_hash_update(hash, (u8 *) &i, sizeof(u16)); in eap_pwd_kdf() 61 crypto_hash_update(hash, label, labellen); in eap_pwd_kdf() 62 crypto_hash_update(hash, (u8 *) &L, sizeof(u16)); in eap_pwd_kdf()
|
/external/wpa_supplicant_8/src/crypto/ |
D | crypto.h | 168 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len);
|
D | crypto_internal.c | 125 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) in crypto_hash_update() function
|
D | crypto_libtomcrypt.c | 194 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) in crypto_hash_update() function
|
D | crypto_cryptoapi.c | 455 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) in crypto_hash_update() function
|
D | crypto_openssl.c | 644 void crypto_hash_update(struct crypto_hash *ctx, const u8 *data, size_t len) in crypto_hash_update() function
|