OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sha1_server
(Results
1 - 4
of
4
) sorted by null
/external/wpa_supplicant_8/src/tls/
tlsv1_common.c
201
verify->
sha1_server
= crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0);
205
verify->
sha1_server
== NULL || verify->sha1_cert == NULL) {
233
if (verify->md5_server && verify->
sha1_server
) {
235
crypto_hash_update(verify->
sha1_server
, buf, len);
258
crypto_hash_finish(verify->
sha1_server
, NULL, NULL);
264
verify->
sha1_server
= NULL;
tlsv1_server_write.c
606
crypto_hash_finish(conn->verify.
sha1_server
, NULL, NULL);
607
conn->verify.
sha1_server
= NULL;
612
if (conn->verify.
sha1_server
== NULL ||
613
crypto_hash_finish(conn->verify.
sha1_server
, hash + MD5_MAC_LEN,
615
conn->verify.
sha1_server
= NULL;
620
conn->verify.
sha1_server
= NULL;
tlsv1_common.h
240
struct crypto_hash *
sha1_server
;
member in struct:tls_verify_hash
tlsv1_client_read.c
841
crypto_hash_finish(conn->verify.
sha1_server
, NULL, NULL);
842
conn->verify.
sha1_server
= NULL;
847
if (conn->verify.
sha1_server
== NULL ||
848
crypto_hash_finish(conn->verify.
sha1_server
, hash + MD5_MAC_LEN,
850
conn->verify.
sha1_server
= NULL;
855
conn->verify.
sha1_server
= NULL;
Completed in 33 milliseconds