Searched defs:client_cert (Results 1 - 1 of 1) sorted by relevance

/systemd/src/journal-remote/
H A Dmicrohttpd-util.c205 static int get_client_cert(gnutls_session_t session, gnutls_x509_crt_t *client_cert) { argument
212 assert(client_cert);
235 *client_cert = cert;
239 static int get_auth_dn(gnutls_x509_crt_t client_cert, char **buf) { argument
246 r = gnutls_x509_crt_get_dn(client_cert, NULL, &len);
256 gnutls_x509_crt_get_dn(client_cert, *buf, &len);
267 _cleanup_(gnutls_x509_crt_deinitp) gnutls_x509_crt_t client_cert = NULL;
287 r = get_client_cert(session, &client_cert);
294 r = get_auth_dn(client_cert, &buf);

Completed in 30 milliseconds