RAND: changed from ntru_get_poly_small(int length... to ntru_get_random_poly_ternary(size_t length...

This commit is contained in:
Malte 2014-05-06 07:48:25 +02:00 committed by malte
parent e072eb04e9
commit 79a908de00
2 changed files with 3 additions and 3 deletions

View File

@ -155,7 +155,7 @@ static unsigned int check_allowed_zeros(pb_poly *polynom)
* @param entropy_source the source of entropy you want
* @return newly allocated polynomial, must be freed with delete_polynom()
*/
pb_poly *ntru_get_poly_small(int length, int entropy_source)
pb_poly *ntru_get_random_poly_ternary(int length, int entropy_source)
{
mp_int chara;
init_integer(&chara);

View File

@ -36,8 +36,8 @@
*/
#define GET_INT_FROM_RRAND 3
pb_poly *ntru_get_poly_small(int length, int entropy_source);
pb_poly *ntru_get_poly_big(int length, int entropy_source, mp_int *upper_bound,
pb_poly *ntru_get_random_poly_ternary(int length, int entropy_source);
pb_poly *ntru_get_poly_big(size_t length, int entropy_source, mp_int *upper_bound,
mp_int *lower_bound);
#endif /* NTRU_RAND_H */