Order of arguments in Doxygen comment fixed
This commit is contained in:
@@ -42,8 +42,8 @@ struct ccm_aead_t {
|
|||||||
/**
|
/**
|
||||||
* Create a ccm_aead instance.
|
* Create a ccm_aead instance.
|
||||||
*
|
*
|
||||||
* @param key_size key size in bytes
|
|
||||||
* @param algo algorithm to implement, a CCM mode
|
* @param algo algorithm to implement, a CCM mode
|
||||||
|
* @param key_size key size in bytes
|
||||||
* @return aead, NULL if not supported
|
* @return aead, NULL if not supported
|
||||||
*/
|
*/
|
||||||
ccm_aead_t *ccm_aead_create(encryption_algorithm_t algo, size_t key_size);
|
ccm_aead_t *ccm_aead_create(encryption_algorithm_t algo, size_t key_size);
|
||||||
|
|||||||
@@ -42,8 +42,8 @@ struct gcm_aead_t {
|
|||||||
/**
|
/**
|
||||||
* Create a gcm_aead instance.
|
* Create a gcm_aead instance.
|
||||||
*
|
*
|
||||||
* @param key_size key size in bytes
|
|
||||||
* @param algo algorithm to implement, a gcm mode
|
* @param algo algorithm to implement, a gcm mode
|
||||||
|
* @param key_size key size in bytes
|
||||||
* @return aead, NULL if not supported
|
* @return aead, NULL if not supported
|
||||||
*/
|
*/
|
||||||
gcm_aead_t *gcm_aead_create(encryption_algorithm_t algo, size_t key_size);
|
gcm_aead_t *gcm_aead_create(encryption_algorithm_t algo, size_t key_size);
|
||||||
|
|||||||
Reference in New Issue
Block a user