HomeSort by relevance Sort by last modified time
    Searched refs:sha1_client (Results 1 - 4 of 4) sorted by null

  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_common.c 196 verify->sha1_client = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0);
200 verify->md5_cert == NULL || verify->sha1_client == NULL ||
212 if (verify->md5_client && verify->sha1_client) {
214 crypto_hash_update(verify->sha1_client, buf, len);
232 crypto_hash_finish(verify->sha1_client, NULL, NULL);
238 verify->sha1_client = NULL;
tlsv1_client_write.c 611 crypto_hash_finish(conn->verify.sha1_client, NULL, NULL);
612 conn->verify.sha1_client = NULL;
617 if (conn->verify.sha1_client == NULL ||
618 crypto_hash_finish(conn->verify.sha1_client, hash + MD5_MAC_LEN,
620 conn->verify.sha1_client = NULL;
625 conn->verify.sha1_client = NULL;
tlsv1_common.h 199 struct crypto_hash *sha1_client; member in struct:tls_verify_hash
tlsv1_server_read.c 1035 crypto_hash_finish(conn->verify.sha1_client, NULL, NULL);
1036 conn->verify.sha1_client = NULL;
1041 if (conn->verify.sha1_client == NULL ||
1042 crypto_hash_finish(conn->verify.sha1_client, hash + MD5_MAC_LEN,
1044 conn->verify.sha1_client = NULL;
1049 conn->verify.sha1_client = NULL;

Completed in 380 milliseconds