gnutls-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU gnutls branch, ocsp, updated. gnutls_3_0_8-47-g6e74ff6


From: Simon Josefsson
Subject: [SCM] GNU gnutls branch, ocsp, updated. gnutls_3_0_8-47-g6e74ff6
Date: Thu, 15 Dec 2011 09:25:34 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU gnutls".

http://git.savannah.gnu.org/cgit/gnutls.git/commit/?id=6e74ff67fcf9c29814668f2c3eb9979d881f2143

The branch, ocsp has been updated
       via  6e74ff67fcf9c29814668f2c3eb9979d881f2143 (commit)
       via  4c29ec0fad0b0ca19c9477da782dba0bc26a74d2 (commit)
       via  5ecba513a5239469eca12427fc84d0807b54fda9 (commit)
      from  47b17a55acdec0c5bdd17e0e0e1e577118481f8e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 6e74ff67fcf9c29814668f2c3eb9979d881f2143
Author: Simon Josefsson <address@hidden>
Date:   Thu Dec 15 10:24:45 2011 +0100

    Generate OCSP man pages.

commit 4c29ec0fad0b0ca19c9477da782dba0bc26a74d2
Author: Simon Josefsson <address@hidden>
Date:   Wed Dec 14 15:05:00 2011 +0100

    Generated.

commit 5ecba513a5239469eca12427fc84d0807b54fda9
Author: Simon Josefsson <address@hidden>
Date:   Wed Dec 14 14:50:36 2011 +0100

    Doc fix.

-----------------------------------------------------------------------

Summary of changes:
 doc/manpages/Makefile.am |   48 +++++++++++++++++++++++++++++++++++++++++++++-
 lib/x509/ocsp.c          |   15 ++++++++++++++
 2 files changed, 62 insertions(+), 1 deletions(-)

diff --git a/doc/manpages/Makefile.am b/doc/manpages/Makefile.am
index 4b7baed..bb14f48 100644
--- a/doc/manpages/Makefile.am
+++ b/doc/manpages/Makefile.am
@@ -215,7 +215,7 @@ APIMANS += gnutls_session_ticket_enable_server.3
 APIMANS += gnutls_key_generate.3
 APIMANS += gnutls_priority_init.3
 APIMANS += gnutls_priority_deinit.3
-APIMANS += gnutls_priority_get_cipher_suite.3
+APIMANS += gnutls_priority_get_cipher_suite_index.3
 APIMANS += gnutls_priority_set.3
 APIMANS += gnutls_priority_set_direct.3
 APIMANS += gnutls_set_default_priority.3
@@ -354,6 +354,37 @@ APIMANS += gnutls_certificate_set_params_function.3
 APIMANS += gnutls_anon_set_params_function.3
 APIMANS += gnutls_psk_set_params_function.3
 APIMANS += gnutls_hex2bin.3
+APIMANS += gnutls_ocsp_req_init.3
+APIMANS += gnutls_ocsp_req_deinit.3
+APIMANS += gnutls_ocsp_req_import.3
+APIMANS += gnutls_ocsp_req_export.3
+APIMANS += gnutls_ocsp_req_print.3
+APIMANS += gnutls_ocsp_req_get_version.3
+APIMANS += gnutls_ocsp_req_get_cert_id.3
+APIMANS += gnutls_ocsp_req_add_cert_id.3
+APIMANS += gnutls_ocsp_req_add_cert.3
+APIMANS += gnutls_ocsp_req_get_extension.3
+APIMANS += gnutls_ocsp_req_set_extension.3
+APIMANS += gnutls_ocsp_req_get_nonce.3
+APIMANS += gnutls_ocsp_req_set_nonce.3
+APIMANS += gnutls_ocsp_req_randomize_nonce.3
+APIMANS += gnutls_ocsp_resp_init.3
+APIMANS += gnutls_ocsp_resp_deinit.3
+APIMANS += gnutls_ocsp_resp_import.3
+APIMANS += gnutls_ocsp_resp_export.3
+APIMANS += gnutls_ocsp_resp_print.3
+APIMANS += gnutls_ocsp_resp_get_status.3
+APIMANS += gnutls_ocsp_resp_get_response.3
+APIMANS += gnutls_ocsp_resp_get_version.3
+APIMANS += gnutls_ocsp_resp_get_responder.3
+APIMANS += gnutls_ocsp_resp_get_produced.3
+APIMANS += gnutls_ocsp_resp_get_single.3
+APIMANS += gnutls_ocsp_resp_get_extension.3
+APIMANS += gnutls_ocsp_resp_get_nonce.3
+APIMANS += gnutls_ocsp_resp_get_signature_algorithm.3
+APIMANS += gnutls_ocsp_resp_get_signature.3
+APIMANS += gnutls_ocsp_resp_get_certs.3
+APIMANS += gnutls_ocsp_resp_verify.3
 APIMANS += gnutls_openpgp_crt_init.3
 APIMANS += gnutls_openpgp_crt_deinit.3
 APIMANS += gnutls_openpgp_crt_import.3
@@ -740,6 +771,20 @@ doit:
                echo -n "."; \
        done
        @echo ""
+       @echo -n "Creating man pages for ocsp.h..." && \
+       for i in `$(top_srcdir)/doc/scripts/getfuncs.pl 
<$(top_srcdir)/lib/includes/gnutls/ocsp.h`; do \
+               $(top_srcdir)/doc/scripts/gdoc -man \
+                       -module $(PACKAGE) -sourceversion $(VERSION) \
+                       -bugsto $(PACKAGE_BUGREPORT) \
+                       -pkg-name "$(PACKAGE_NAME)" \
+                       -include "gnutls/ocsp.h" \
+                       -seeinfo $(PACKAGE) -verbatimcopying \
+                       -copyright "2011 Free Software Foundation" \
+                       -function $$i \
+                       $(top_srcdir)/lib/*.c $(top_srcdir)/lib/*/*.c > $$i.3 
2>/dev/null && \
+               echo -n "."; \
+       done
+       @echo ""
        @echo -n "Creating man pages for abstract.h..." && \
        for i in `$(top_srcdir)/doc/scripts/getfuncs.pl 
<$(top_srcdir)/lib/includes/gnutls/abstract.h`; do \
                $(top_srcdir)/doc/scripts/gdoc -man \
@@ -823,5 +868,6 @@ doit:
                        $(top_srcdir)/lib/*.c $(top_srcdir)/lib/*/*.c > $$i.3 
2>/dev/null && \
                echo -n "."; \
        done
+       @echo ""
 
 .PHONY: update-makefile doit
diff --git a/lib/x509/ocsp.c b/lib/x509/ocsp.c
index ac44e7d..cc70c11 100644
--- a/lib/x509/ocsp.c
+++ b/lib/x509/ocsp.c
@@ -1257,6 +1257,21 @@ gnutls_ocsp_resp_get_produced (gnutls_ocsp_resp_t resp)
  *    thisUpdate                   GeneralizedTime,
  *    nextUpdate         [0]       EXPLICIT GeneralizedTime OPTIONAL,
  *    singleExtensions   [1]       EXPLICIT Extensions OPTIONAL }
+ *
+ *    CertID          ::=     SEQUENCE {
+ *        hashAlgorithm       AlgorithmIdentifier,
+ *        issuerNameHash      OCTET STRING, -- Hash of Issuer's DN
+ *        issuerKeyHash       OCTET STRING, -- Hash of Issuers public key
+ *        serialNumber        CertificateSerialNumber }
+ *
+ * CertStatus ::= CHOICE {
+ *     good                [0]     IMPLICIT NULL,
+ *     revoked             [1]     IMPLICIT RevokedInfo,
+ *     unknown             [2]     IMPLICIT UnknownInfo }
+ * 
+ * RevokedInfo ::= SEQUENCE {
+ *     revocationTime              GeneralizedTime,
+ *     revocationReason    [0]     EXPLICIT CRLReason OPTIONAL }
  * </programlisting></informalexample>
  *
  * Returns: On success, %GNUTLS_E_SUCCESS (0) is returned, otherwise a


hooks/post-receive
-- 
GNU gnutls



reply via email to

[Prev in Thread] Current Thread [Next in Thread]