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

  /external/wpa_supplicant_8/src/tls/
tlsv1_common.c 199 verify->md5_cert = crypto_hash_init(CRYPTO_HASH_ALG_MD5, NULL, 0);
204 verify->md5_cert == NULL || verify->sha1_client == NULL ||
237 if (verify->md5_cert && verify->sha1_cert) {
238 crypto_hash_update(verify->md5_cert, buf, len);
256 crypto_hash_finish(verify->md5_cert, NULL, NULL);
262 verify->md5_cert = NULL;
tlsv1_client_write.c 510 if (conn->verify.md5_cert == NULL ||
511 crypto_hash_finish(conn->verify.md5_cert, hpos, &hlen) < 0)
515 conn->verify.md5_cert = NULL;
522 crypto_hash_finish(conn->verify.md5_cert, NULL, NULL);
524 conn->verify.md5_cert = NULL;
tlsv1_common.h 242 struct crypto_hash *md5_cert; member in struct:tls_verify_hash
tlsv1_server_read.c 886 if (conn->verify.md5_cert == NULL ||
887 crypto_hash_finish(conn->verify.md5_cert, hpos, &hlen) < 0)
891 conn->verify.md5_cert = NULL;
898 crypto_hash_finish(conn->verify.md5_cert, NULL, NULL);
900 conn->verify.md5_cert = NULL;

Completed in 114 milliseconds