Order of arguments in Doxygen comment fixed

This commit is contained in:
Tobias Brunner 2013-02-12 16:40:54 +01:00
parent 8656f35ae1
commit 5f7f4fa398
2 changed files with 2 additions and 2 deletions

View File

@ -42,8 +42,8 @@ struct ccm_aead_t {
/**
* Create a ccm_aead instance.
*
* @param key_size key size in bytes
* @param algo algorithm to implement, a CCM mode
* @param key_size key size in bytes
* @return aead, NULL if not supported
*/
ccm_aead_t *ccm_aead_create(encryption_algorithm_t algo, size_t key_size);

View File

@ -42,8 +42,8 @@ struct gcm_aead_t {
/**
* Create a gcm_aead instance.
*
* @param key_size key size in bytes
* @param algo algorithm to implement, a gcm mode
* @param key_size key size in bytes
* @return aead, NULL if not supported
*/
gcm_aead_t *gcm_aead_create(encryption_algorithm_t algo, size_t key_size);