]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
Order of arguments in Doxygen comment fixed
authorTobias Brunner <tobias@strongswan.org>
Tue, 12 Feb 2013 15:40:54 +0000 (16:40 +0100)
committerTobias Brunner <tobias@strongswan.org>
Thu, 28 Feb 2013 17:17:42 +0000 (18:17 +0100)
src/libstrongswan/plugins/ccm/ccm_aead.h
src/libstrongswan/plugins/gcm/gcm_aead.h

index d5e302f942db94edc7b8bff3663b5a696928b5a3..79ab318045b6627e7808be69984c9336f286badd 100644 (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);
index db4be2442b66b49f967a79f7dda478e7773ef6c8..846c3c76ce5245e50afeaf3ba533a4695b8d10f0 100644 (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);