diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-10-02 15:22:27 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-10-02 15:22:27 (GMT) |
commit | afc317f97f0177e386ef463d2204be712252ceec (patch) | |
tree | b626ca6f62abaeff0393253fb9dbc4f0c3cfa5f5 /libtommath/bn_mp_jacobi.c | |
parent | 30f7e69b182d1267056ee2628a860891f6555aa3 (diff) | |
download | tcl-libtommath.zip tcl-libtommath.tar.gz tcl-libtommath.tar.bz2 |
'const'ify all libtommath functions, will appear in next libtommath version. See: pull request [https://github.com/libtom/libtommath/pull/88|88]libtommath
Diffstat (limited to 'libtommath/bn_mp_jacobi.c')
-rw-r--r-- | libtommath/bn_mp_jacobi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libtommath/bn_mp_jacobi.c b/libtommath/bn_mp_jacobi.c index 8981393..c314c82 100644 --- a/libtommath/bn_mp_jacobi.c +++ b/libtommath/bn_mp_jacobi.c @@ -20,7 +20,7 @@ * HAC is wrong here, as the special case of (0 | 1) is not * handled correctly. */ -int mp_jacobi(mp_int *a, mp_int *n, int *c) +int mp_jacobi(const mp_int *a, const mp_int *n, int *c) { mp_int a1, p1; int k, s, r, res; |