Searched refs:md5_server (Results 1 - 4 of 4) sorted by relevance

/freebsd-12-stable/contrib/wpa/src/tls/
H A Dtlsv1_common.c210 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;
H A Dtlsv1_common.h241 struct crypto_hash *md5_server; member in struct:tls_verify_hash
H A Dtlsv1_server_write.c861 if (conn->verify.md5_server == NULL ||
862 crypto_hash_finish(conn->verify.md5_server, hash, &hlen) < 0) {
865 conn->verify.md5_server = NULL;
870 conn->verify.md5_server = NULL;
H A Dtlsv1_client_read.c1388 if (conn->verify.md5_server == NULL ||
1389 crypto_hash_finish(conn->verify.md5_server, hash, &hlen) < 0) {
1392 conn->verify.md5_server = NULL;
1397 conn->verify.md5_server = NULL;

Completed in 120 milliseconds