]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
fix typo
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 8 Jun 2013 18:27:22 +0000 (20:27 +0200)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 8 Jun 2013 18:27:22 +0000 (20:27 +0200)
lib/gnutls_privkey.c
lib/gnutls_pubkey.c

index 3e3e8111beae00e294ea7ba72f7a42d2e6f7b4ab..1436b16e896baeb0ccf40478fbac1f5fb44ae1f5 100644 (file)
@@ -686,7 +686,7 @@ cleanup:
  * gnutls_privkey_sign_data:
  * @signer: Holds the key
  * @hash: should be a digest algorithm
- * @flags: Zero or on of %gnutls_privkey_flags_t
+ * @flags: Zero or one of %gnutls_privkey_flags_t
  * @data: holds the data to be signed
  * @signature: will contain the signature allocate with gnutls_malloc()
  *
index f4ef15e818919c81e169a3a75ea0b4d699ed37da..f27caa6477cc3b3514feca9d66856cdcf67bef20 100644 (file)
@@ -1530,7 +1530,7 @@ gnutls_pubkey_import_dsa_raw (gnutls_pubkey_t key,
 /**
  * gnutls_pubkey_verify_data:
  * @pubkey: Holds the public key
- * @flags: Zero or on of %gnutls_pubkey_flags_t
+ * @flags: Zero or one of %gnutls_pubkey_flags_t
  * @data: holds the signed data
  * @signature: contains the signature
  *
@@ -1580,7 +1580,7 @@ gnutls_pubkey_verify_data (gnutls_pubkey_t pubkey, unsigned int flags,
  * gnutls_pubkey_verify_data2:
  * @pubkey: Holds the public key
  * @algo: The signature algorithm used
- * @flags: Zero or on of %gnutls_pubkey_flags_t
+ * @flags: Zero or one of %gnutls_pubkey_flags_t
  * @data: holds the signed data
  * @signature: contains the signature
  *
@@ -1626,7 +1626,7 @@ gnutls_pubkey_verify_data2 (gnutls_pubkey_t pubkey,
 /**
  * gnutls_pubkey_verify_hash:
  * @key: Holds the public key
- * @flags: Zero or on of %gnutls_pubkey_flags_t
+ * @flags: Zero or one of %gnutls_pubkey_flags_t
  * @hash: holds the hash digest to be verified
  * @signature: contains the signature
  *
@@ -1661,7 +1661,7 @@ int ret;
  * gnutls_pubkey_verify_hash2:
  * @key: Holds the public key
  * @algo: The signature algorithm used
- * @flags: Zero or on of %gnutls_pubkey_flags_t
+ * @flags: Zero or one of %gnutls_pubkey_flags_t
  * @hash: holds the hash digest to be verified
  * @signature: contains the signature
  *