aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libstrongswan/plugins/bliss/bliss_bitpacker.h4
-rw-r--r--src/libstrongswan/plugins/bliss/bliss_public_key.h8
2 files changed, 6 insertions, 6 deletions
diff --git a/src/libstrongswan/plugins/bliss/bliss_bitpacker.h b/src/libstrongswan/plugins/bliss/bliss_bitpacker.h
index 7fcf05d2f..52f6c8af0 100644
--- a/src/libstrongswan/plugins/bliss/bliss_bitpacker.h
+++ b/src/libstrongswan/plugins/bliss/bliss_bitpacker.h
@@ -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);
diff --git a/src/libstrongswan/plugins/bliss/bliss_public_key.h b/src/libstrongswan/plugins/bliss/bliss_public_key.h
index 9ffd31777..cd8f231b2 100644
--- a/src/libstrongswan/plugins/bliss/bliss_public_key.h
+++ b/src/libstrongswan/plugins/bliss/bliss_public_key.h
@@ -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