PUB-API: add missing const modifiers

This commit is contained in:
hasufell 2014-06-22 22:18:00 +02:00
parent b38c220704
commit 8f77c3351a
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
1 changed files with 9 additions and 9 deletions

View File

@ -77,10 +77,10 @@ struct keypair {
*/ */
bool bool
ntru_create_keypair( ntru_create_keypair(
fmpz_poly_t f, const fmpz_poly_t f,
fmpz_poly_t g, const fmpz_poly_t g,
keypair *pair, keypair *pair,
ntru_params *params); const ntru_params *params);
/** /**
* Export the public key to a file. * Export the public key to a file.
@ -91,8 +91,8 @@ ntru_create_keypair(
*/ */
void void
export_public_key(char const * const filename, export_public_key(char const * const filename,
fmpz_poly_t pub, const fmpz_poly_t pub,
ntru_params *params); const ntru_params *params)
/** /**
* Export the private key to a file. * Export the private key to a file.
@ -103,8 +103,8 @@ export_public_key(char const * const filename,
*/ */
void void
export_priv_key(char const * const filename, export_priv_key(char const * const filename,
fmpz_poly_t priv, const fmpz_poly_t priv,
ntru_params *params); const ntru_params *params)
/** /**
* Import the public key from a file. * Import the public key from a file.
@ -115,7 +115,7 @@ export_priv_key(char const * const filename,
void void
import_public_key(char const * const filename, import_public_key(char const * const filename,
fmpz_poly_t pub, fmpz_poly_t pub,
ntru_params *params); const ntru_params *params);
/** /**
* Import the private key from a file and store him * Import the private key from a file and store him
@ -130,7 +130,7 @@ void
import_priv_key(char const * const filename, import_priv_key(char const * const filename,
fmpz_poly_t priv, fmpz_poly_t priv,
fmpz_poly_t priv_inv, fmpz_poly_t priv_inv,
ntru_params *params); const ntru_params *params);
/** /**
* Used to free the inner structure * Used to free the inner structure