OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs: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
657
crypto_hash_finish(conn->verify.
sha1_cert
, NULL, NULL);
658
conn->verify.
sha1_cert
= NULL;
665
if (conn->verify.
sha1_cert
== NULL ||
666
crypto_hash_finish(conn->verify.
sha1_cert
, hpos, &hlen) < 0) {
667
conn->verify.
sha1_cert
= NULL;
672
conn->verify.
sha1_cert
= NULL;
tlsv1_server_read.c
977
crypto_hash_finish(conn->verify.
sha1_cert
, NULL, NULL);
978
conn->verify.
sha1_cert
= NULL;
985
if (conn->verify.
sha1_cert
== NULL ||
986
crypto_hash_finish(conn->verify.
sha1_cert
, hpos, &hlen) < 0) {
987
conn->verify.
sha1_cert
= NULL;
992
conn->verify.
sha1_cert
= NULL;
[
all
...]
tlsv1_common.h
245
struct crypto_hash *
sha1_cert
;
member in struct:tls_verify_hash
Completed in 52 milliseconds