Put back :signature-algorithm into gnutls.c

(gnutls_certificate_details): Put :signature-algorithm back again,
which was removed by mistake.
This commit is contained in:
Lars Magne Ingebrigtsen 2014-12-08 19:58:39 +01:00
parent a0fe9b0481
commit ca7ad4271c
2 changed files with 12 additions and 0 deletions

View file

@ -5,6 +5,8 @@
(gnutls_certificate_details): Clean up whitespace slightly.
(Fgnutls_peer_status): Return the Diffie-Hellman prime bits for
the connection.
(gnutls_certificate_details): Put :signature-algorithm back again,
which was removed by mistake.
2014-12-07 Jan Djärv <jan.h.d@swipnet.se>

View file

@ -910,6 +910,16 @@ gnutls_certificate_details (gnutls_x509_crt_t cert)
}
#endif
/* Signature. */
err = fn_gnutls_x509_crt_get_signature_algorithm (cert);
if (err >= GNUTLS_E_SUCCESS)
{
const char *name = fn_gnutls_sign_get_name (err);
if (name)
res = nconc2 (res, list2 (intern (":signature-algorithm"),
build_string (name)));
}
/* Public key ID. */
buf_size = 0;
err = fn_gnutls_x509_crt_get_key_id (cert, 0, NULL, &buf_size);