add name of parameters
This commit is contained in:
parent
43c26b3a3d
commit
3f8e0b62b2
@ -39,7 +39,7 @@ int mp_exptmod_fast(const mp_int *G, const mp_int *X, const mp_int *P, mp_int *Y
|
||||
* one of many reduction algorithms without modding the guts of
|
||||
* the code with if statements everywhere.
|
||||
*/
|
||||
int (*redux)(mp_int *,const mp_int *,mp_digit);
|
||||
int (*redux)(mp_int *x, const mp_int *n, mp_digit rho);
|
||||
|
||||
/* find window size */
|
||||
x = mp_count_bits(X);
|
||||
|
@ -25,7 +25,7 @@ int s_mp_exptmod(const mp_int *G, const mp_int *X, const mp_int *P, mp_int *Y, i
|
||||
mp_int M[TAB_SIZE], res, mu;
|
||||
mp_digit buf;
|
||||
int err, bitbuf, bitcpy, bitcnt, mode, digidx, x, y, winsize;
|
||||
int (*redux)(mp_int *, const mp_int *, const mp_int *);
|
||||
int (*redux)(mp_int *x, const mp_int *m, const mp_int *mu);
|
||||
|
||||
/* find window size */
|
||||
x = mp_count_bits(X);
|
||||
|
Loading…
x
Reference in New Issue
Block a user