OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sha256_client
(Results
1 - 4
of
4
) sorted by null
/external/wpa_supplicant_8/src/tls/
tlsv1_common.c
210
verify->
sha256_client
= crypto_hash_init(CRYPTO_HASH_ALG_SHA256, NULL,
216
if (verify->
sha256_client
== NULL || verify->sha256_server == NULL ||
242
if (verify->
sha256_client
)
243
crypto_hash_update(verify->
sha256_client
, buf, len);
267
crypto_hash_finish(verify->
sha256_client
, NULL, NULL);
270
verify->
sha256_client
= NULL;
tlsv1_client_write.c
655
if (conn->verify.
sha256_client
== NULL ||
656
crypto_hash_finish(conn->verify.
sha256_client
, hash, &hlen)
660
conn->verify.
sha256_client
= NULL;
663
conn->verify.
sha256_client
= NULL;
tlsv1_common.h
238
struct crypto_hash *
sha256_client
;
member in struct:tls_verify_hash
tlsv1_server_read.c
1126
if (conn->verify.
sha256_client
== NULL ||
1127
crypto_hash_finish(conn->verify.
sha256_client
, hash, &hlen)
1131
conn->verify.
sha256_client
= NULL;
1134
conn->verify.
sha256_client
= NULL;
Completed in 26 milliseconds