diff options
author | Simon Josefsson <simon@josefsson.org> | 2007-02-13 09:05:41 +0000 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2007-02-13 09:05:41 +0000 |
commit | ebd30e4fa20c68cfa8f633650f7a39a88c4b8432 (patch) | |
tree | 7fdb584aa29e1d2467d7532fb1071f49ec32fb56 /includes | |
parent | 6099e281c5d3f3fbcfd33c9826b6e267b317d32c (diff) | |
download | gnutls-ebd30e4fa20c68cfa8f633650f7a39a88c4b8432.tar.gz |
Add gnutls_x509_crl_get_signature and gnutls_x509_crl_print.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/gnutls/x509.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/includes/gnutls/x509.h b/includes/gnutls/x509.h index d5e3a45b1b..9404a734fb 100644 --- a/includes/gnutls/x509.h +++ b/includes/gnutls/x509.h @@ -301,6 +301,9 @@ extern "C" int gnutls_x509_crt_print (gnutls_x509_crt_t cert, gnutls_certificate_print_formats_t format, gnutls_datum_t *out); + int gnutls_x509_crl_print (gnutls_x509_crl_t crl, + gnutls_certificate_print_formats_t format, + gnutls_datum_t *out); /* RDN handling. */ @@ -336,6 +339,8 @@ extern "C" void *oid, size_t * sizeof_oid); int gnutls_x509_crl_get_signature_algorithm (gnutls_x509_crl_t crl); + int gnutls_x509_crl_get_signature (gnutls_x509_crl_t crl, + char *sig, size_t *sizeof_sig); int gnutls_x509_crl_get_version (gnutls_x509_crl_t crl); time_t gnutls_x509_crl_get_this_update (gnutls_x509_crl_t crl); |