ALL: set context members to unsigned int

This commit is contained in:
hasufell 2014-04-15 18:49:33 +02:00 committed by malte
parent fc4ee3b70b
commit f8cac1553f
1 changed files with 3 additions and 3 deletions

View File

@ -32,15 +32,15 @@ typedef struct {
* maximal degree N - 1 for * maximal degree N - 1 for
* all polynomials * all polynomials
*/ */
int N; unsigned int N;
/** /**
* large modulus * large modulus
*/ */
int q; unsigned int q;
/** /**
* small modulus * small modulus
*/ */
int p; unsigned int p;
} ntru_context; } ntru_context;
#endif /* NTRU_CONTEXT_H */ #endif /* NTRU_CONTEXT_H */