summaryrefslogtreecommitdiff
path: root/lib/gnutls_srp.c
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2010-02-17 12:35:31 +0100
committerSimon Josefsson <simon@josefsson.org>2010-02-17 12:35:31 +0100
commitc1953c310b347bcb6401ef825265c10518d7c977 (patch)
treeeba10ccfb618847e1f388a573a4782f07c72ba06 /lib/gnutls_srp.c
parent5cf6a95171b1a88b13dd7043fb8e0e4f21b90a1d (diff)
downloadgnutls-c1953c310b347bcb6401ef825265c10518d7c977.tar.gz
Fix GTK-DOC syntax. Unfortunately this looses some information.
Diffstat (limited to 'lib/gnutls_srp.c')
-rw-r--r--lib/gnutls_srp.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/gnutls_srp.c b/lib/gnutls_srp.c
index f404e7f88f..3b9a858617 100644
--- a/lib/gnutls_srp.c
+++ b/lib/gnutls_srp.c
@@ -391,7 +391,7 @@ freeall:
}
/**
- * gnutls_srp_free_client_credentials - Used to free an allocated gnutls_srp_client_credentials_t structure
+ * gnutls_srp_free_client_credentials:
* @sc: is a #gnutls_srp_client_credentials_t structure.
*
* This structure is complex enough to manipulate directly thus
@@ -406,7 +406,7 @@ gnutls_srp_free_client_credentials (gnutls_srp_client_credentials_t sc)
}
/**
- * gnutls_srp_allocate_client_credentials - Used to allocate an gnutls_srp_server_credentials_t structure
+ * gnutls_srp_allocate_client_credentials:
* @sc: is a pointer to a #gnutls_srp_server_credentials_t structure.
*
* This structure is complex enough to manipulate directly thus
@@ -427,7 +427,7 @@ gnutls_srp_allocate_client_credentials (gnutls_srp_client_credentials_t * sc)
}
/**
- * gnutls_srp_set_client_credentials - Used to set the username/password, in a gnutls_srp_client_credentials_t structure
+ * gnutls_srp_set_client_credentials:
* @res: is a #gnutls_srp_client_credentials_t structure.
* @username: is the user's userid
* @password: is the user's password
@@ -467,7 +467,7 @@ gnutls_srp_set_client_credentials (gnutls_srp_client_credentials_t res,
}
/**
- * gnutls_srp_free_server_credentials - Used to free an allocated gnutls_srp_server_credentials_t structure
+ * gnutls_srp_free_server_credentials:
* @sc: is a #gnutls_srp_server_credentials_t structure.
*
* This structure is complex enough to manipulate directly thus
@@ -483,7 +483,7 @@ gnutls_srp_free_server_credentials (gnutls_srp_server_credentials_t sc)
}
/**
- * gnutls_srp_allocate_server_credentials - Used to allocate an gnutls_srp_server_credentials_t structure
+ * gnutls_srp_allocate_server_credentials:
* @sc: is a pointer to a #gnutls_srp_server_credentials_t structure.
*
* This structure is complex enough to manipulate directly thus this
@@ -504,7 +504,7 @@ gnutls_srp_allocate_server_credentials (gnutls_srp_server_credentials_t * sc)
}
/**
- * gnutls_srp_set_server_credentials_file - Used to set the password files, in a gnutls_srp_server_credentials_t structure
+ * gnutls_srp_set_server_credentials_file:
* @res: is a #gnutls_srp_server_credentials_t structure.
* @password_file: is the SRP password file (tpasswd)
* @password_conf_file: is the SRP password conf file (tpasswd.conf)
@@ -563,7 +563,7 @@ gnutls_srp_set_server_credentials_file (gnutls_srp_server_credentials_t res,
/**
- * gnutls_srp_set_server_credentials_function - Used to set a callback to retrieve the user's SRP credentials
+ * gnutls_srp_set_server_credentials_function:
* @cred: is a #gnutls_srp_server_credentials_t structure.
* @func: is the callback function
*
@@ -601,7 +601,7 @@ gnutls_srp_set_server_credentials_function (gnutls_srp_server_credentials_t
}
/**
- * gnutls_srp_set_client_credentials_function - Used to set a callback to retrieve the username and password
+ * gnutls_srp_set_client_credentials_function:
* @cred: is a #gnutls_srp_server_credentials_t structure.
* @func: is the callback function
*
@@ -636,7 +636,7 @@ gnutls_srp_set_client_credentials_function (gnutls_srp_client_credentials_t
/**
- * gnutls_srp_server_get_username - return the username of the peer
+ * gnutls_srp_server_get_username:
* @session: is a gnutls session
*
* This function will return the username of the peer. This should
@@ -659,7 +659,7 @@ gnutls_srp_server_get_username (gnutls_session_t session)
}
/**
- * gnutls_srp_verifier - Used to calculate an SRP verifier
+ * gnutls_srp_verifier:
* @username: is the user's name
* @password: is the user's password
* @salt: should be some randomly generated bytes
@@ -724,7 +724,7 @@ gnutls_srp_verifier (const char *username, const char *password,
}
/**
- * gnutls_srp_set_prime_bits - set the minimum bits for a SRP ciphersuite
+ * gnutls_srp_set_prime_bits:
* @session: is a #gnutls_session_t structure.
* @bits: is the number of bits
*