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

  /external/wpa_supplicant_8/src/tls/
tlsv1_common.c 210 verify->md5_server = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0);
215 if (verify->md5_client == NULL || verify->md5_server == NULL ||
245 if (verify->md5_server && verify->sha1_server) {
246 crypto_hash_update(verify->md5_server, buf, len);
267 crypto_hash_finish(verify->md5_server, NULL, NULL);
273 verify->md5_server = NULL;
tlsv1_server_write.c 734 if (conn->verify.md5_server == NULL ||
735 crypto_hash_finish(conn->verify.md5_server, hash, &hlen) < 0) {
738 conn->verify.md5_server = NULL;
743 conn->verify.md5_server = NULL;
tlsv1_client_read.c 927 if (conn->verify.md5_server == NULL ||
928 crypto_hash_finish(conn->verify.md5_server, hash, &hlen) < 0) {
931 conn->verify.md5_server = NULL;
936 conn->verify.md5_server = NULL;
tlsv1_common.h 239 struct crypto_hash *md5_server; member in struct:tls_verify_hash

Completed in 601 milliseconds