]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
bliss: Fix Doxygen comments
authorTobias Brunner <tobias@strongswan.org>
Mon, 15 Dec 2014 16:19:44 +0000 (17:19 +0100)
committerTobias Brunner <tobias@strongswan.org>
Mon, 15 Dec 2014 16:19:57 +0000 (17:19 +0100)
src/libstrongswan/plugins/bliss/bliss_bitpacker.h
src/libstrongswan/plugins/bliss/bliss_public_key.h

index 7fcf05d2f98f7cbaccdf77315c944f4a8fc0133c..52f6c8af0e033cc859878b5dee74a6128d2ce76c 100644 (file)
@@ -71,14 +71,14 @@ struct bliss_bitpacker_t {
 /**
  * Create a bliss_bitpacker_t object for writing
  *
- * @param bits                 Total number of bits to be stored 
+ * @param max_bits             Total number of bits to be stored
  */
 bliss_bitpacker_t* bliss_bitpacker_create(size_t max_bits);
 
 /**
  * Create a bliss_bitpacker_t object for reading
  *
- * @param data                 Packed array of bits 
+ * @param data                 Packed array of bits
  */
 bliss_bitpacker_t* bliss_bitpacker_create_from_data(chunk_t data);
 
index 9ffd3177781cc31db9f38f5dfc32d83d96c360ad..cd8f231b260b41968b0b04d3626f9dc51f2eec70 100644 (file)
@@ -56,7 +56,7 @@ bliss_public_key_t *bliss_public_key_load(key_type_t type, va_list args);
 /**
  * Parse an ASN.1 BIT STRING into an array of public key coefficients
  *
- * @param data         packed subjectPublicKey
+ * @param object       packed subjectPublicKey
  * @param set          BLISS parameter set for public key vector
  * @param pubkey       coefficients of public key vector
  * @return                     TRUE if parsing successful
@@ -67,7 +67,7 @@ bool bliss_public_key_from_asn1(chunk_t object, bliss_param_set_t *set,
 /**
  * Encode a raw BLISS subjectPublicKey in ASN.1 DER format
  *
- * @param                      coefficients of public key vector
+ * @param pubkey       coefficients of public key vector
  * @param set          BLISS parameter set for the public key vector
  * @result                     ASN.1 encoded subjectPublicKey
  */
@@ -78,7 +78,7 @@ chunk_t bliss_public_key_encode(uint32_t *pubkey, bliss_param_set_t *set);
  *
  * @param oid          BLISS public key type OID
  * @param pubkey       coefficients of public key vector
- * @param n                    BLISS parameter set for the public key vector
+ * @param set          BLISS parameter set for the public key vector
  * @result                     ASN.1 encoded subjectPublicKeyInfo record
  */
 chunk_t bliss_public_key_info_encode(int oid, uint32_t *pubkey,
@@ -89,7 +89,7 @@ chunk_t bliss_public_key_info_encode(int oid, uint32_t *pubkey,
  *
  * @param oid          BLISS public key type OID
  * @param pubkey       coefficients of public key vector
- * @param n                    BLISS parameter set for the public key vector
+ * @param set          BLISS parameter set for the public key vector
  * @param type         type of fingerprint to be generated
  * @param fp           generated fingerprint (must be freed by caller)
  * @result                     TRUE if generation was successful