From faf5b2a1486bab42c4c1f954aa4d784c3adbf0a7 Mon Sep 17 00:00:00 2001 From: Kevin B Kenny Date: Tue, 27 Dec 2005 18:10:11 +0000 Subject: Merge changes --- libtommath/bn_mp_add_d.c | 6 ++++-- libtommath/bn_mp_radix_size.c | 5 ++--- libtommath/bn_mp_read_radix.c | 7 +++++-- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/libtommath/bn_mp_add_d.c b/libtommath/bn_mp_add_d.c index d472353..38ae268 100644 --- a/libtommath/bn_mp_add_d.c +++ b/libtommath/bn_mp_add_d.c @@ -41,6 +41,9 @@ mp_add_d (mp_int * a, mp_digit b, mp_int * c) a->sign = MP_NEG; c->sign = (c->used) ? MP_NEG : MP_ZPOS; + /* clamp */ + mp_clamp(c); + return res; } @@ -106,5 +109,4 @@ mp_add_d (mp_int * a, mp_digit b, mp_int * c) #endif /* $Source: /root/tcl/repos-to-convert/tcl/libtommath/bn_mp_add_d.c,v $ */ -/* $Revision: 1.2 $ */ -/* $Date: 2005/10/08 14:42:54 $ */ +/* Tom's revision is 1.2 */ diff --git a/libtommath/bn_mp_radix_size.c b/libtommath/bn_mp_radix_size.c index 3381a6c..a8b98af2 100644 --- a/libtommath/bn_mp_radix_size.c +++ b/libtommath/bn_mp_radix_size.c @@ -36,7 +36,7 @@ int mp_radix_size (mp_int * a, int radix, int *size) } if (mp_iszero(a) == MP_YES) { - *size = 2; + *size = 2; return MP_OKAY; } @@ -83,5 +83,4 @@ int mp_radix_size (mp_int * a, int radix, int *size) #endif /* $Source: /root/tcl/repos-to-convert/tcl/libtommath/bn_mp_radix_size.c,v $ */ -/* $Revision: 1.3 $ */ -/* $Date: 2005/09/26 18:27:14 $ */ +/* Tom's revision is 1.3 */ diff --git a/libtommath/bn_mp_read_radix.c b/libtommath/bn_mp_read_radix.c index 2a11a36..fceccb7 100644 --- a/libtommath/bn_mp_read_radix.c +++ b/libtommath/bn_mp_read_radix.c @@ -21,6 +21,9 @@ int mp_read_radix (mp_int * a, const char *str, int radix) int y, res, neg; char ch; + /* zero the digit bignum */ + mp_zero(a); + /* make sure the radix is ok */ if (radix < 2 || radix > 64) { return MP_VAL; @@ -85,5 +88,5 @@ int mp_read_radix (mp_int * a, const char *str, int radix) #endif /* $Source: /root/tcl/repos-to-convert/tcl/libtommath/bn_mp_read_radix.c,v $ */ -/* $Revision: 1.3 $ */ -/* $Date: 2005/09/26 18:27:14 $ */ +/* Tom's revision is 1.3. */ + -- cgit v0.12