OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sha1_client
(Results
1 - 4
of
4
) sorted by null
/external/wpa_supplicant_8/src/tls/
tlsv1_common.c
212
verify->
sha1_client
= crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0);
216
verify->md5_cert == NULL || verify->
sha1_client
== NULL ||
241
if (verify->md5_client && verify->
sha1_client
) {
243
crypto_hash_update(verify->
sha1_client
, buf, len);
269
crypto_hash_finish(verify->
sha1_client
, NULL, NULL);
275
verify->
sha1_client
= NULL;
tlsv1_client_write.c
673
crypto_hash_finish(conn->verify.
sha1_client
, NULL, NULL);
674
conn->verify.
sha1_client
= NULL;
679
if (conn->verify.
sha1_client
== NULL ||
680
crypto_hash_finish(conn->verify.
sha1_client
, hash + MD5_MAC_LEN,
682
conn->verify.
sha1_client
= NULL;
687
conn->verify.
sha1_client
= NULL;
tlsv1_server_read.c
1105
crypto_hash_finish(conn->verify.
sha1_client
, NULL, NULL);
1106
conn->verify.
sha1_client
= NULL;
1111
if (conn->verify.
sha1_client
== NULL ||
1112
crypto_hash_finish(conn->verify.
sha1_client
, hash + MD5_MAC_LEN,
1114
conn->verify.
sha1_client
= NULL;
1119
conn->verify.
sha1_client
= NULL;
tlsv1_common.h
237
struct crypto_hash *
sha1_client
;
member in struct:tls_verify_hash
Completed in 319 milliseconds