diff libtommath/bn_mp_exptmod_fast.c @ 351:e66eec4dcba7 debug-unrandom

some more debugging output
author Matt Johnston <matt@ucc.asn.au>
date Tue, 08 Aug 2006 15:31:38 +0000
parents cd14c94fe89c
children 2481bc4370b8
line wrap: on
line diff
--- a/libtommath/bn_mp_exptmod_fast.c	Sun Aug 06 15:29:41 2006 +0000
+++ b/libtommath/bn_mp_exptmod_fast.c	Tue Aug 08 15:31:38 2006 +0000
@@ -42,6 +42,10 @@
    */
   int     (*redux)(mp_int*,mp_int*,mp_digit);
 
+  print_mp_int("mp_exptmod_fast G", G);
+  print_mp_int("mp_exptmod_fast X", X);
+  print_mp_int("mp_exptmod_fast P", P);
+
   /* find window size */
   x = mp_count_bits (X);
   if (x <= 7) {