diff options
author | Patrick Pelletier <code@funwithsoftware.org> | 2011-12-28 01:37:06 -0800 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2011-12-28 16:08:55 +0200 |
commit | 8d4c4cafee906ea8e5f27de6a1c8d1cb45117eda (patch) | |
tree | b3da8bc033b3f538d78820c44bad0b48d9561dcb /lib/algorithms | |
parent | 87ed97f3046dcc7f80d4ae70b40045f3a82112ed (diff) | |
download | gnutls-8d4c4cafee906ea8e5f27de6a1c8d1cb45117eda.tar.gz |
minor doc and comment fixes
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
Diffstat (limited to 'lib/algorithms')
-rw-r--r-- | lib/algorithms/ciphers.c | 4 | ||||
-rw-r--r-- | lib/algorithms/protocols.c | 2 | ||||
-rw-r--r-- | lib/algorithms/secparams.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/algorithms/ciphers.c b/lib/algorithms/ciphers.c index 198844f355..f8e14696a1 100644 --- a/lib/algorithms/ciphers.c +++ b/lib/algorithms/ciphers.c @@ -43,7 +43,7 @@ typedef struct gnutls_cipher_entry gnutls_cipher_entry; * View first: "The order of encryption and authentication for * protecting communications" by Hugo Krawczyk - CRYPTO 2001 * - * Make sure to updated MAX_CIPHER_BLOCK_SIZE and MAX_CIPHER_KEY_SIZE as well. + * Make sure to update MAX_CIPHER_BLOCK_SIZE and MAX_CIPHER_KEY_SIZE as well. */ static const gnutls_cipher_entry algorithms[] = { {"AES-256-CBC", GNUTLS_CIPHER_AES_256_CBC, 16, 32, CIPHER_BLOCK, 16, 0, 0}, @@ -203,7 +203,7 @@ gnutls_cipher_get_name (gnutls_cipher_algorithm_t algorithm) /** * gnutls_cipher_get_id: - * @name: is a MAC algorithm name + * @name: is a cipher algorithm name * * The names are compared in a case insensitive way. * diff --git a/lib/algorithms/protocols.c b/lib/algorithms/protocols.c index 6d6b04c23f..e59c8fd30d 100644 --- a/lib/algorithms/protocols.c +++ b/lib/algorithms/protocols.c @@ -162,7 +162,7 @@ gnutls_protocol_get_id (const char *name) * * Get a list of supported protocols, e.g. SSL 3.0, TLS 1.0 etc. * - * This function is not threat safe. + * This function is not thread safe. * * Returns: a (0)-terminated list of #gnutls_protocol_t integers * indicating the available protocols. diff --git a/lib/algorithms/secparams.c b/lib/algorithms/secparams.c index ba6c7d53f6..456e3a1269 100644 --- a/lib/algorithms/secparams.c +++ b/lib/algorithms/secparams.c @@ -127,7 +127,7 @@ _gnutls_pk_bits_to_subgroup_bits (unsigned int pk_bits) * Convert a #gnutls_sec_param_t value to a string. * * Returns: a pointer to a string that contains the name of the - * specified public key algorithm, or %NULL. + * specified security level, or %NULL. * * Since: 2.12.0 **/ |