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_2_9_9-118-g1bd3b32


From: Simon Josefsson
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_2_9_9-118-g1bd3b32
Date: Wed, 17 Feb 2010 14:20:43 +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=1bd3b3251a35bdef5163964469a9c7dde0fc32b0

The branch, master has been updated
       via  1bd3b3251a35bdef5163964469a9c7dde0fc32b0 (commit)
       via  b8b9f13d89d84fc242066b62dfa0c87fa77b9508 (commit)
      from  302fec0d6570a74a21f30a32e1d4fd1a717bf574 (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 1bd3b3251a35bdef5163964469a9c7dde0fc32b0
Author: Simon Josefsson <address@hidden>
Date:   Wed Feb 17 15:20:28 2010 +0100

    Fix comments, for GTK-DOC.

commit b8b9f13d89d84fc242066b62dfa0c87fa77b9508
Author: Simon Josefsson <address@hidden>
Date:   Wed Feb 17 14:30:58 2010 +0100

    Ignore more headers.

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

Summary of changes:
 doc/reference/Makefile.am    |    3 ++
 lib/includes/gnutls/crypto.h |   46 +++++++++++++++++++++---------------------
 2 files changed, 26 insertions(+), 23 deletions(-)

diff --git a/doc/reference/Makefile.am b/doc/reference/Makefile.am
index dda2e01..a485490 100644
--- a/doc/reference/Makefile.am
+++ b/doc/reference/Makefile.am
@@ -95,6 +95,9 @@ IGNORE_HFILES += alignof.h alloca.h alloca.in.h arg-nonnull.h 
        \
        time.h time.in.h unistd.h unistd.in.h w32sock.h warn-on-use.h   \
        vasnprintf.h wchar.h wchar.in.h xsize.h
 
+# cd lib/gl/sys/ && echo *.h
+IGNORE_HFILES += socket.h stat.h
+
 # cd lib/minitasn1/ && echo *.h
 IGNORE_HFILES += element.h gstr.h int.h parser_aux.h structure.h
 
diff --git a/lib/includes/gnutls/crypto.h b/lib/includes/gnutls/crypto.h
index 225810e..57834b3 100644
--- a/lib/includes/gnutls/crypto.h
+++ b/lib/includes/gnutls/crypto.h
@@ -144,38 +144,38 @@ typedef struct gnutls_crypto_bigint
   /* as bigint_cmp */
   int (*bigint_cmp_ui) (const bigint_t m1, unsigned long m2);
   /* ret = a % b */
-    bigint_t (*bigint_mod) (const bigint_t a, const bigint_t b);
+  bigint_t (*bigint_mod) (const bigint_t a, const bigint_t b);
   /* a = b -> ret == a */
-    bigint_t (*bigint_set) (bigint_t a, const bigint_t b);
+  bigint_t (*bigint_set) (bigint_t a, const bigint_t b);
   /* a = b -> ret == a */
-    bigint_t (*bigint_set_ui) (bigint_t a, unsigned long b);
+  bigint_t (*bigint_set_ui) (bigint_t a, unsigned long b);
   unsigned int (*bigint_get_nbits) (const bigint_t a);
   /* w = b ^ e mod m */
-    bigint_t (*bigint_powm) (bigint_t w, const bigint_t b,
-                            const bigint_t e, const bigint_t m);
+  bigint_t (*bigint_powm) (bigint_t w, const bigint_t b,
+                          const bigint_t e, const bigint_t m);
   /* w = a + b mod m */
-    bigint_t (*bigint_addm) (bigint_t w, const bigint_t a,
-                            const bigint_t b, const bigint_t m);
+  bigint_t (*bigint_addm) (bigint_t w, const bigint_t a,
+                          const bigint_t b, const bigint_t m);
   /* w = a - b mod m */
-    bigint_t (*bigint_subm) (bigint_t w, const bigint_t a, const bigint_t b,
-                            const bigint_t m);
+  bigint_t (*bigint_subm) (bigint_t w, const bigint_t a, const bigint_t b,
+                          const bigint_t m);
   /* w = a * b mod m */
-    bigint_t (*bigint_mulm) (bigint_t w, const bigint_t a, const bigint_t b,
-                            const bigint_t m);
+  bigint_t (*bigint_mulm) (bigint_t w, const bigint_t a, const bigint_t b,
+                          const bigint_t m);
   /* w = a + b */ bigint_t (*bigint_add) (bigint_t w, const bigint_t a,
                                          const bigint_t b);
   /* w = a - b */ bigint_t (*bigint_sub) (bigint_t w, const bigint_t a,
                                          const bigint_t b);
   /* w = a * b */
-    bigint_t (*bigint_mul) (bigint_t w, const bigint_t a, const bigint_t b);
+  bigint_t (*bigint_mul) (bigint_t w, const bigint_t a, const bigint_t b);
   /* w = a + b */
-    bigint_t (*bigint_add_ui) (bigint_t w, const bigint_t a, unsigned long b);
+  bigint_t (*bigint_add_ui) (bigint_t w, const bigint_t a, unsigned long b);
   /* w = a - b */
-    bigint_t (*bigint_sub_ui) (bigint_t w, const bigint_t a, unsigned long b);
+  bigint_t (*bigint_sub_ui) (bigint_t w, const bigint_t a, unsigned long b);
   /* w = a * b */
-    bigint_t (*bigint_mul_ui) (bigint_t w, const bigint_t a, unsigned long b);
+  bigint_t (*bigint_mul_ui) (bigint_t w, const bigint_t a, unsigned long b);
   /* q = a / b */
-    bigint_t (*bigint_div) (bigint_t q, const bigint_t a, const bigint_t b);
+  bigint_t (*bigint_div) (bigint_t q, const bigint_t a, const bigint_t b);
   /* 0 if prime */
   int (*bigint_prime_check) (const bigint_t pp);
   int (*bigint_generate_group) (gnutls_group_st * gg, unsigned int bits);
@@ -185,8 +185,8 @@ typedef struct gnutls_crypto_bigint
    * GNUTLS_E_SHORT_MEMORY_BUFFER if buf_size is not sufficient to
    * store this integer, and updates the buf_size;
    */
-    bigint_t (*bigint_scan) (const void *buf, size_t buf_size,
-                            gnutls_bigint_format_t format);
+  bigint_t (*bigint_scan) (const void *buf, size_t buf_size,
+                          gnutls_bigint_format_t format);
   int (*bigint_print) (const bigint_t a, void *buf, size_t * buf_size,
                       gnutls_bigint_format_t format);
 } gnutls_crypto_bigint_st;
@@ -236,19 +236,19 @@ typedef struct gnutls_crypto_pk
    * parameters, depending on the operation */
   int (*encrypt) (gnutls_pk_algorithm_t, gnutls_datum_t * ciphertext,
                  const gnutls_datum_t * plaintext,
-                 const gnutls_pk_params_st * /* public */ );
+                 const gnutls_pk_params_st *public);
   int (*decrypt) (gnutls_pk_algorithm_t, gnutls_datum_t * plaintext,
                  const gnutls_datum_t * ciphertext,
-                 const gnutls_pk_params_st * /* private */ );
+                 const gnutls_pk_params_st *private);
 
   int (*sign) (gnutls_pk_algorithm_t, gnutls_datum_t * signature,
               const gnutls_datum_t * data,
-              const gnutls_pk_params_st * /* private */ );
+              const gnutls_pk_params_st *private);
   int (*verify) (gnutls_pk_algorithm_t, const gnutls_datum_t * data,
                 const gnutls_datum_t * signature,
-                const gnutls_pk_params_st * /* public */ );
+                const gnutls_pk_params_st *public);
 
-  int (*generate) (gnutls_pk_algorithm_t, unsigned int level /*bits */ ,
+  int (*generate) (gnutls_pk_algorithm_t, unsigned int nbits,
                   gnutls_pk_params_st *);
   /* this function should convert params to ones suitable
    * for the above functions


hooks/post-receive
-- 
GNU gnutls




reply via email to

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