gnutls-commit
[Top][All Lists]
Advanced

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

[SCM] GNU gnutls branch, master, updated. gnutls_3_0_7-56-gb5f6c58


From: Simon Josefsson
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_3_0_7-56-gb5f6c58
Date: Thu, 10 Nov 2011 20:09:30 +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=b5f6c58ae2d6b4bcbeea5d25888fedb4a93849f8

The branch, master has been updated
       via  b5f6c58ae2d6b4bcbeea5d25888fedb4a93849f8 (commit)
      from  647edb316fa9f7415a9d4ff7a1ab4b12b5580563 (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 b5f6c58ae2d6b4bcbeea5d25888fedb4a93849f8
Author: Simon Josefsson <address@hidden>
Date:   Thu Nov 10 21:09:17 2011 +0100

    Add verify-high.h, to export some structs (for OCSP).

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

Summary of changes:
 lib/x509/verify-high.h |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)
 create mode 100644 lib/x509/verify-high.h

diff --git a/lib/x509/verify-high.h b/lib/x509/verify-high.h
new file mode 100644
index 0000000..c241b08
--- /dev/null
+++ b/lib/x509/verify-high.h
@@ -0,0 +1,25 @@
+struct named_cert_st {
+  gnutls_x509_crt_t cert;
+  uint8_t name[MAX_NAME_SIZE];
+  unsigned int name_size;
+};
+
+struct node_st {
+  /* The trusted certificates */
+  gnutls_x509_crt_t *trusted_cas;
+  unsigned int trusted_ca_size;
+
+  struct named_cert_st *named_certs;
+  unsigned int named_cert_size;
+
+  /* The trusted CRLs */
+  gnutls_x509_crl_t *crls;
+  unsigned int crl_size;
+};
+
+struct gnutls_x509_trust_list_st {
+  int size;
+  struct node_st *node;
+};
+
+#define INIT_HASH 0x33a1


hooks/post-receive
-- 
GNU gnutls



reply via email to

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