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

  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_common.c 193 verify->md5_client = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0);
199 if (verify->md5_client == NULL || verify->md5_server == NULL ||
212 if (verify->md5_client && verify->sha1_client) {
213 crypto_hash_update(verify->md5_client, buf, len);
229 crypto_hash_finish(verify->md5_client, NULL, NULL);
235 verify->md5_client = NULL;
tlsv1_client_write.c 606 if (conn->verify.md5_client == NULL ||
607 crypto_hash_finish(conn->verify.md5_client, hash, &hlen) < 0) {
610 conn->verify.md5_client = NULL;
615 conn->verify.md5_client = NULL;
tlsv1_common.h 198 struct crypto_hash *md5_client; member in struct:tls_verify_hash
tlsv1_server_read.c 1030 if (conn->verify.md5_client == NULL ||
1031 crypto_hash_finish(conn->verify.md5_client, hash, &hlen) < 0) {
1034 conn->verify.md5_client = NULL;
1039 conn->verify.md5_client = NULL;

Completed in 791 milliseconds