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

  /external/wpa_supplicant_8/src/tls/
tlsv1_common.c 212 verify->sha1_client = crypto_hash_init(CRYPTO_HASH_ALG_SHA1, NULL, 0);
216 verify->md5_cert == NULL || verify->sha1_client == NULL ||
241 if (verify->md5_client && verify->sha1_client) {
243 crypto_hash_update(verify->sha1_client, buf, len);
269 crypto_hash_finish(verify->sha1_client, NULL, NULL);
275 verify->sha1_client = NULL;
tlsv1_client_write.c 811 crypto_hash_finish(conn->verify.sha1_client, NULL, NULL);
812 conn->verify.sha1_client = NULL;
817 if (conn->verify.sha1_client == NULL ||
818 crypto_hash_finish(conn->verify.sha1_client, hash + MD5_MAC_LEN,
820 conn->verify.sha1_client = NULL;
825 conn->verify.sha1_client = NULL;
tlsv1_server_read.c 1185 crypto_hash_finish(conn->verify.sha1_client, NULL, NULL);
1186 conn->verify.sha1_client = NULL;
1191 if (conn->verify.sha1_client == NULL ||
1192 crypto_hash_finish(conn->verify.sha1_client, hash + MD5_MAC_LEN,
1194 conn->verify.sha1_client = NULL;
1199 conn->verify.sha1_client = NULL;
    [all...]
tlsv1_common.h 239 struct crypto_hash *sha1_client; member in struct:tls_verify_hash

Completed in 42 milliseconds