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
222
verify->
sha256_client
= crypto_hash_init(CRYPTO_HASH_ALG_SHA256, NULL,
228
if (verify->
sha256_client
== NULL || verify->sha256_server == NULL ||
254
if (verify->
sha256_client
)
255
crypto_hash_update(verify->
sha256_client
, buf, len);
279
crypto_hash_finish(verify->
sha256_client
, NULL, NULL);
282
verify->
sha256_client
= NULL;
tlsv1_client_write.c
793
if (conn->verify.
sha256_client
== NULL ||
794
crypto_hash_finish(conn->verify.
sha256_client
, hash, &hlen)
798
conn->verify.
sha256_client
= NULL;
801
conn->verify.
sha256_client
= NULL;
tlsv1_common.h
240
struct crypto_hash *
sha256_client
;
member in struct:tls_verify_hash
tlsv1_server_read.c
1167
if (conn->verify.
sha256_client
== NULL ||
1168
crypto_hash_finish(conn->verify.
sha256_client
, hash, &hlen)
1172
conn->verify.
sha256_client
= NULL;
1175
conn->verify.
sha256_client
= NULL;
[
all
...]
Completed in 3833 milliseconds