diff options
author | Werner Koch <[email protected]> | 1998-07-29 19:35:05 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-07-29 19:35:05 +0000 |
commit | 5ae562b41d9e3ec965643b902bf8593c8ca5a2d7 (patch) | |
tree | 059ed09c380b3f534479add19933dbe9a7a401c9 /mpi/mpi-inv.c | |
parent | changed trustdb design (diff) | |
download | gnupg-5ae562b41d9e3ec965643b902bf8593c8ca5a2d7.tar.gz gnupg-5ae562b41d9e3ec965643b902bf8593c8ca5a2d7.zip |
edit-key is now complete
Diffstat (limited to 'mpi/mpi-inv.c')
-rw-r--r-- | mpi/mpi-inv.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mpi/mpi-inv.c b/mpi/mpi-inv.c index 25efbd979..150d87ca1 100644 --- a/mpi/mpi-inv.c +++ b/mpi/mpi-inv.c @@ -120,6 +120,7 @@ mpi_invm( MPI x, MPI a, MPI n ) mpi_rshift(t2, t2, 1); mpi_rshift(t3, t3, 1); Y4: + ; } while( !mpi_test_bit( t3, 0 ) ); /* while t3 is even */ if( !t3->sign ) { @@ -216,6 +217,7 @@ mpi_invm( MPI x, MPI a, MPI n ) mpi_rshift(t3, t3, 1); } Y4: + ; } while( !mpi_test_bit( t3, 0 ) ); /* while t3 is even */ if( !t3->sign ) { |