- fixed doxygen warnings

This commit is contained in:
Martin Willi
2005-12-15 12:10:53 +00:00
parent b4ffed672b
commit 19f78a6fed
15 changed files with 67 additions and 64 deletions
+2 -2
View File
@@ -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
+2 -2
View File
@@ -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);
@@ -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
@@ -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
@@ -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