rand: added a nessary but missing comment on the big int min/max

This commit is contained in:
Malte 2014-04-21 09:37:46 +02:00 committed by malte
parent 0bdddc12e7
commit 626e2fc27a
1 changed files with 2 additions and 0 deletions

View File

@ -29,12 +29,14 @@
/** /**
* The maximal integer that is given by * The maximal integer that is given by
* ntru_get_urnd_poly_big and ntru_get_rnd_poly_big * ntru_get_urnd_poly_big and ntru_get_rnd_poly_big
* this number must be positiv
*/ */
#define BIG_RAND_MAX 100 #define BIG_RAND_MAX 100
/** /**
* The minimal integer that is given by * The minimal integer that is given by
* ntru_get_urnd_poly_big and ntru_get_rnd_poly_big * ntru_get_urnd_poly_big and ntru_get_rnd_poly_big
* this number must be negativ
*/ */
#define BIG_RAND_MIN -100 #define BIG_RAND_MIN -100