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

  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_common.c 194 verify->md5_server = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0);
199 if (verify->md5_client == NULL || verify->md5_server == NULL ||
216 if (verify->md5_server && verify->sha1_server) {
217 crypto_hash_update(verify->md5_server, buf, len);
230 crypto_hash_finish(verify->md5_server, NULL, NULL);
236 verify->md5_server = NULL;
tlsv1_common.h 200 struct crypto_hash *md5_server; member in struct:tls_verify_hash
tlsv1_server_write.c 598 if (conn->verify.md5_server == NULL ||
599 crypto_hash_finish(conn->verify.md5_server, hash, &hlen) < 0) {
602 conn->verify.md5_server = NULL;
607 conn->verify.md5_server = NULL;
tlsv1_client_read.c 819 if (conn->verify.md5_server == NULL ||
820 crypto_hash_finish(conn->verify.md5_server, hash, &hlen) < 0) {
823 conn->verify.md5_server = NULL;
828 conn->verify.md5_server = NULL;

Completed in 25 milliseconds