summaryrefslogtreecommitdiff
path: root/lib/gnutls_psk.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gnutls_psk.c')
-rw-r--r--lib/gnutls_psk.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/gnutls_psk.c b/lib/gnutls_psk.c
index e62ba32d9b..abfc4e56ca 100644
--- a/lib/gnutls_psk.c
+++ b/lib/gnutls_psk.c
@@ -281,7 +281,7 @@ gnutls_psk_set_client_credentials_function (gnutls_psk_client_credentials_t
/**
- * gnutls_psk_server_get_username - This function returns the username of the peer
+ * gnutls_psk_server_get_username - return the username of the peer
* @session: is a gnutls session
*
* This should only be called in case of PSK authentication and in
@@ -307,7 +307,7 @@ gnutls_psk_server_get_username (gnutls_session_t session)
}
/**
- * gnutls_hex_decode - This function will decode hex encoded data
+ * gnutls_hex_decode - decode hex encoded data
* @hex_data: contain the encoded data
* @result: the place where decoded data will be copied
* @result_size: holds the size of the result
@@ -336,7 +336,7 @@ gnutls_hex_decode (const gnutls_datum_t * hex_data, char *result,
}
/**
- * gnutls_hex_encode - This function will convert raw data to hex encoded
+ * gnutls_hex_encode - convert raw data to hex encoded
* @data: contain the raw data
* @result: the place where hex data will be copied
* @result_size: holds the size of the result
@@ -363,7 +363,7 @@ gnutls_hex_encode (const gnutls_datum_t * data, char *result,
}
/**
- * gnutls_psk_set_server_dh_params - This function will set the DH parameters for a server to use
+ * gnutls_psk_set_server_dh_params - set the DH parameters for a server to use
* @res: is a gnutls_psk_server_credentials_t structure
* @dh_params: is a structure that holds diffie hellman parameters.
*
@@ -379,7 +379,7 @@ gnutls_psk_set_server_dh_params (gnutls_psk_server_credentials_t res,
}
/**
- * gnutls_psk_set_server_params_function - This function will set the DH parameters callback
+ * gnutls_psk_set_server_params_function - set the DH parameters callback
* @res: is a gnutls_certificate_credentials_t structure
* @func: is the function to be called
*