OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sha1_cert
(Results
1 - 4
of
4
) sorted by null
/external/wpa_supplicant_8/src/tls/
tlsv1_common.c
214
verify->
sha1_cert
= crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0);
217
verify->sha1_server == NULL || verify->
sha1_cert
== NULL) {
249
if (verify->md5_cert && verify->
sha1_cert
) {
251
crypto_hash_update(verify->
sha1_cert
, buf, len);
271
crypto_hash_finish(verify->
sha1_cert
, NULL, NULL);
277
verify->
sha1_cert
= NULL;
tlsv1_client_write.c
513
crypto_hash_finish(conn->verify.
sha1_cert
, NULL, NULL);
514
conn->verify.
sha1_cert
= NULL;
521
if (conn->verify.
sha1_cert
== NULL ||
522
crypto_hash_finish(conn->verify.
sha1_cert
, hpos, &hlen) < 0) {
523
conn->verify.
sha1_cert
= NULL;
528
conn->verify.
sha1_cert
= NULL;
tlsv1_server_read.c
891
crypto_hash_finish(conn->verify.
sha1_cert
, NULL, NULL);
892
conn->verify.
sha1_cert
= NULL;
899
if (conn->verify.
sha1_cert
== NULL ||
900
crypto_hash_finish(conn->verify.
sha1_cert
, hpos, &hlen) < 0) {
901
conn->verify.
sha1_cert
= NULL;
906
conn->verify.
sha1_cert
= NULL;
tlsv1_common.h
243
struct crypto_hash *
sha1_cert
;
member in struct:tls_verify_hash
Completed in 573 milliseconds