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_10-214-g7811f60


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_2_9_10-214-g7811f60
Date: Mon, 07 Jun 2010 17:51:50 +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=7811f608080588145878266caf7bb61818c1cc8b

The branch, master has been updated
       via  7811f608080588145878266caf7bb61818c1cc8b (commit)
      from  743dedcddb41d9a29a0e92fa85a24a5c270d5f01 (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 7811f608080588145878266caf7bb61818c1cc8b
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Mon Jun 7 19:51:42 2010 +0200

    Removed several comments that pointed to Alon's implementation comments. We 
use inline C comments to generate documentation (not doxygen).

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

Summary of changes:
 lib/includes/gnutls/pkcs11.h |   74 +++--------------------------------------
 1 files changed, 6 insertions(+), 68 deletions(-)

diff --git a/lib/includes/gnutls/pkcs11.h b/lib/includes/gnutls/pkcs11.h
index f29b7bf..22850d0 100644
--- a/lib/includes/gnutls/pkcs11.h
+++ b/lib/includes/gnutls/pkcs11.h
@@ -1,18 +1,6 @@
 #ifndef __GNUTLS_PKCS11_H
 #define __GNUTLS_PKCS11_H
 
-/**
- * @addtogroup gnutls_pkcs11 GnuTLS PKCS#11 interface.
- *
- * @{
- */
-
-/**
- * @file gnutls-pkcs11.h
- * @brief gnutls-pkcs11 interface.
- * @author Alon Bar-Lev <address@hidden>
- * @see @ref gnutls_pkcs11
- */
 
 #include <stdarg.h>
 #include <gnutls/gnutls.h>
@@ -20,12 +8,12 @@
 
 #define GNUTLS_PKCS11_MAX_PIN_LEN 32
 
-/**
- * @brief Token prompt callback.
- * @param global_data  Callback data.
- * @param label                Token label.
- * @param retry                Retry counter.
- * @return none zero on success.
+/* Token callback function. The callback will be used to
+ * ask the user to re-enter the token with given null terminated
+ * label. Callback should return zero if token has been inserted
+ * by user and a negative error code otherwise. It might be called
+ * multiple times if the token is not detected and the retry counter
+ * will be increased.
  */
 typedef int (*gnutls_pkcs11_token_callback_t)(
        void * const global_data,
@@ -63,9 +51,6 @@ typedef int (*gnutls_pkcs11_pin_callback_t)(void *userdata, 
int attempt,
                                     unsigned int flags,
                                     char *pin, size_t pin_max);
 
-/**
- * @brief PKCS#11 certificate reference.
- */
 struct gnutls_pkcs11_obj_st;
 typedef struct gnutls_pkcs11_obj_st* gnutls_pkcs11_obj_t;
 
@@ -78,58 +63,11 @@ typedef struct gnutls_pkcs11_obj_st* gnutls_pkcs11_obj_t;
  * load = /lib/yyy-pkcs11.so
  */
 
-/**
- * @brief Initialize gnutls-pkcs11.
- * @param params       Misc values to use.
- * @return gnutls status.
- * @note gnutls-pkcs11 must be uninitialize.
- * @see gnutls_pkcs11_deinit()
- * @todo params is not implemented yet.
- *
- * params is in the format of:
- * name=value;name=value;
- */
 int gnutls_pkcs11_init (unsigned int flags, const char* configfile);
-
-/**
- * @brief Deinitialize gnutls-pkcs11.
- * @return gnutls status.
- */
 void gnutls_pkcs11_deinit (void);
-
-/**
- * @brief Set token prompt callback.
- * @param callback     Callback to use.
- * @param data         Data to use when calling callback.
- * @return gnutls status.
- */
 void gnutls_pkcs11_set_token_function(gnutls_pkcs11_token_callback_t fn, void 
*userdata);
-
-/**
- * @brief Set PIN prompt callback.
- * @param callback     Callback to use.
- * @param data         Data to use when calling callback.
- * @return gnutls status.
- */
 void gnutls_pkcs11_set_pin_function (gnutls_pkcs11_pin_callback_t callback, 
void * data);
-
-/**
- * @brief Add PKCS#11 provider.
- * @param name         Library to load.
- * @param params       Misc provider parameters.
- * @return gnutls status.
- * @todo params is not implemented yet.
- *
- * params is in the format of:
- * name=value;name=value; 
- */
 int gnutls_pkcs11_add_provider (const char * name, const char * params);
-
-/**
- * @brief Free certificate reference.
- * @param certificate  Certificate reference to free.
- * @return gnutls stauts.
- */
 int gnutls_pkcs11_obj_init ( gnutls_pkcs11_obj_t *certificate);
 
 int gnutls_pkcs11_obj_import_url (gnutls_pkcs11_obj_t, const char * url);


hooks/post-receive
-- 
GNU gnutls



reply via email to

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