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 198 verify->md5_server = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0);
203 if (verify->md5_client == NULL || verify->md5_server == NULL ||
233 if (verify->md5_server && verify->sha1_server) {
234 crypto_hash_update(verify->md5_server, buf, len);
255 crypto_hash_finish(verify->md5_server, NULL, NULL);
261 verify->md5_server = NULL;
tlsv1_common.h 239 struct crypto_hash *md5_server; member in struct:tls_verify_hash
tlsv1_server_write.c 601 if (conn->verify.md5_server == NULL ||
602 crypto_hash_finish(conn->verify.md5_server, hash, &hlen) < 0) {
605 conn->verify.md5_server = NULL;
610 conn->verify.md5_server = NULL;
tlsv1_client_read.c 836 if (conn->verify.md5_server == NULL ||
837 crypto_hash_finish(conn->verify.md5_server, hash, &hlen) < 0) {
840 conn->verify.md5_server = NULL;
845 conn->verify.md5_server = NULL;

Completed in 30 milliseconds