/**
* 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);
/**
* 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
/**
* 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
*/
*
* @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,
*
* @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