aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/transforms
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2005-12-15 12:10:53 +0000
committerMartin Willi <martin@strongswan.org>2005-12-15 12:10:53 +0000
commit19f78a6fed6e966721e9e310099dbfa79489f9d9 (patch)
treeb3902ad27411f082bbb286cbb44340d99b4c8edc /Source/charon/transforms
parentb4ffed672b50523506d410b64fb2ed1aa026617f (diff)
downloadstrongswan-19f78a6fed6e966721e9e310099dbfa79489f9d9.tar.bz2
strongswan-19f78a6fed6e966721e9e310099dbfa79489f9d9.tar.xz
- fixed doxygen warnings
Diffstat (limited to 'Source/charon/transforms')
-rw-r--r--Source/charon/transforms/crypters/crypter.h4
-rw-r--r--Source/charon/transforms/hashers/hasher.h4
-rw-r--r--Source/charon/transforms/rsa/rsa_private_key.h2
-rw-r--r--Source/charon/transforms/rsa/rsa_public_key.h2
-rw-r--r--Source/charon/transforms/signers/hmac_signer.h2
5 files changed, 7 insertions, 7 deletions
diff --git a/Source/charon/transforms/crypters/crypter.h b/Source/charon/transforms/crypters/crypter.h
index 00ed83ace..25a27e142 100644
--- a/Source/charon/transforms/crypters/crypter.h
+++ b/Source/charon/transforms/crypters/crypter.h
@@ -87,7 +87,7 @@ struct crypter_t {
* @param this calling object
* @param data data to encrypt
* @param iv initializing vector
- * @param [out]encrypted pointer where the encrypted bytes will be written
+ * @param[out] encrypted pointer where the encrypted bytes will be written
* @return
* - SUCCESS
* - INVALID_ARG if data size not a multiple of block size
@@ -101,7 +101,7 @@ struct crypter_t {
* @param this calling object
* @param data data to decrypt
* @param iv initializing vector
- * @param [out]encrypted pointer where the decrypted bytes will be written
+ * @param[out] encrypted pointer where the decrypted bytes will be written
* @return
* - SUCCESS
* - INVALID_ARG if data size not a multiple of block size
diff --git a/Source/charon/transforms/hashers/hasher.h b/Source/charon/transforms/hashers/hasher.h
index 00ea0a724..a4d6f14d7 100644
--- a/Source/charon/transforms/hashers/hasher.h
+++ b/Source/charon/transforms/hashers/hasher.h
@@ -91,7 +91,7 @@ struct hasher_t {
*
* @param this calling object
* @param data data to hash
- * @param [out]hash pointer where the hash will be written
+ * @param[out] hash pointer where the hash will be written
*/
void (*get_hash) (hasher_t *this, chunk_t data, u_int8_t *hash);
@@ -104,7 +104,7 @@ struct hasher_t {
*
* @param this calling object
* @param data chunk with data to hash
- * @param [out]hash chunk which will hold allocated hash
+ * @param[out] hash chunk which will hold allocated hash
*/
void (*allocate_hash) (hasher_t *this, chunk_t data, chunk_t *hash);
diff --git a/Source/charon/transforms/rsa/rsa_private_key.h b/Source/charon/transforms/rsa/rsa_private_key.h
index 2e24c34ec..094c3e249 100644
--- a/Source/charon/transforms/rsa/rsa_private_key.h
+++ b/Source/charon/transforms/rsa/rsa_private_key.h
@@ -48,7 +48,7 @@ typedef struct rsa_private_key_t rsa_private_key_t;
struct rsa_private_key_t {
/**
- * @bief Build a signature over a chunk using EMSA-PKCS1 encoding.
+ * @brief Build a signature over a chunk using EMSA-PKCS1 encoding.
*
* This signature creates a hash using the specified hash algorithm, concatenates
* it with an ASN1-OID of the hash algorithm and runs the RSASP1 function
diff --git a/Source/charon/transforms/rsa/rsa_public_key.h b/Source/charon/transforms/rsa/rsa_public_key.h
index 657f7f5a6..a4671b148 100644
--- a/Source/charon/transforms/rsa/rsa_public_key.h
+++ b/Source/charon/transforms/rsa/rsa_public_key.h
@@ -49,7 +49,7 @@ typedef struct rsa_public_key_t rsa_public_key_t;
struct rsa_public_key_t {
/**
- * @bief Verify a EMSA-PKCS1 encodined signature.
+ * @brief Verify a EMSA-PKCS1 encodined signature.
*
* Processes the supplied signature with the RSAVP1 function,
* selects the hash algorithm form the resultign ASN1-OID and
diff --git a/Source/charon/transforms/signers/hmac_signer.h b/Source/charon/transforms/signers/hmac_signer.h
index 1ce23622d..8cbe80ecd 100644
--- a/Source/charon/transforms/signers/hmac_signer.h
+++ b/Source/charon/transforms/signers/hmac_signer.h
@@ -45,7 +45,7 @@ struct hmac_signer_t {
/**
* @brief Creates a new hmac_signer_t.
*
- * @param hash_algorithm Hash algorithm to use with signer
+ * @param hash_algoritm Hash algorithm to use with signer
* @return
* - hmac_signer_t
* - NULL if hash algorithm not supported