Skip to content

Commit

Permalink
use same parameter name between prototype declaration and function de…
Browse files Browse the repository at this point in the history
…finition
  • Loading branch information
fperrad authored and sjaeckel committed Dec 2, 2015
1 parent c0b14e3 commit 10cfb95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tommath_private.h
Expand Up @@ -66,9 +66,9 @@ int mp_karatsuba_sqr(mp_int *a, mp_int *b);
int mp_toom_sqr(mp_int *a, mp_int *b);
int fast_mp_invmod(mp_int *a, mp_int *b, mp_int *c);
int mp_invmod_slow (mp_int * a, mp_int * b, mp_int * c);
int fast_mp_montgomery_reduce(mp_int *a, mp_int *m, mp_digit mp);
int mp_exptmod_fast(mp_int *G, mp_int *X, mp_int *P, mp_int *Y, int mode);
int s_mp_exptmod (mp_int * G, mp_int * X, mp_int * P, mp_int * Y, int mode);
int fast_mp_montgomery_reduce(mp_int *x, mp_int *n, mp_digit rho);
int mp_exptmod_fast(mp_int *G, mp_int *X, mp_int *P, mp_int *Y, int redmode);
int s_mp_exptmod (mp_int * G, mp_int * X, mp_int * P, mp_int * Y, int redmode);
void bn_reverse(unsigned char *s, int len);

extern const char *mp_s_rmap;
Expand Down

0 comments on commit 10cfb95

Please sign in to comment.