Searched refs:sha256_client (Results 1 – 4 of 4) sorted by relevance
/external/wpa_supplicant_8/src/tls/ |
D | tlsv1_common.c | 222 verify->sha256_client = crypto_hash_init(CRYPTO_HASH_ALG_SHA256, NULL, in tls_verify_hash_init() 228 if (verify->sha256_client == NULL || verify->sha256_server == NULL || in tls_verify_hash_init() 254 if (verify->sha256_client) in tls_verify_hash_add() 255 crypto_hash_update(verify->sha256_client, buf, len); in tls_verify_hash_add() 279 crypto_hash_finish(verify->sha256_client, NULL, NULL); in tls_verify_hash_free() 282 verify->sha256_client = NULL; in tls_verify_hash_free()
|
D | tlsv1_client_write.c | 796 if (conn->verify.sha256_client == NULL || in tls_write_client_finished() 797 crypto_hash_finish(conn->verify.sha256_client, hash, &hlen) in tls_write_client_finished() 801 conn->verify.sha256_client = NULL; in tls_write_client_finished() 804 conn->verify.sha256_client = NULL; in tls_write_client_finished()
|
D | tlsv1_server_read.c | 1195 if (conn->verify.sha256_client == NULL || in tls_process_client_finished() 1196 crypto_hash_finish(conn->verify.sha256_client, hash, &hlen) in tls_process_client_finished() 1200 conn->verify.sha256_client = NULL; in tls_process_client_finished() 1203 conn->verify.sha256_client = NULL; in tls_process_client_finished()
|
D | tlsv1_common.h | 240 struct crypto_hash *sha256_client; member
|