DOC: fix more doxygen comments

This commit is contained in:
hasufell 2014-05-25 01:13:34 +02:00
parent 32f2eb2295
commit eb8fa515b4
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
3 changed files with 3 additions and 4 deletions

View File

@ -34,9 +34,8 @@
* @param priv_key the polynom containing the private key to decrypt * @param priv_key the polynom containing the private key to decrypt
* the message * the message
* @param priv_key_inv the inverse polynome to the private key * @param priv_key_inv the inverse polynome to the private key
* @param context the ntru_context
* @param out the result polynom is written in here [out] * @param out the result polynom is written in here [out]
* * @param ctx the ntru_context
*/ */
void ntru_decrypt_poly( void ntru_decrypt_poly(
fmpz_poly_t encr_msg, fmpz_poly_t encr_msg,

View File

@ -36,7 +36,7 @@
* q = large mod * q = large mod
* *
* @param msg pb_poly* the message to encrypt * @param msg pb_poly* the message to encrypt
* @param pubKey pb_poly* the public key * @param pub_key pb_poly* the public key
* @param rnd pb_poly* the random poly * @param rnd pb_poly* the random poly
* @param out pb_poly* the output poly [out] * @param out pb_poly* the output poly [out]
* @param ctx ntru_context* the ntru context * @param ctx ntru_context* the ntru context

View File

@ -433,7 +433,7 @@ cleanup:
* and Fast NTRU Key Creation." * and Fast NTRU Key Creation."
* *
* @param a polynomial to invert * @param a polynomial to invert
* @param Fq polynomial [out] * @param Fp polynomial [out]
* @param ctx NTRU context * @param ctx NTRU context
*/ */
bool poly_inverse_poly_p(fmpz_poly_t a, bool poly_inverse_poly_p(fmpz_poly_t a,