mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 18:58:32 +00:00
- Found algorithmic bug in mpi_is_prime()
This commit is contained in:
parent
4ed999c4b2
commit
41d13f4af8
2 changed files with 3 additions and 1 deletions
|
@ -12,6 +12,8 @@ Bug fixes
|
||||||
certificate in the chain in ssl_write_certificate() and
|
certificate in the chain in ssl_write_certificate() and
|
||||||
ssl_write_certificate_request() (Found by fatbob)
|
ssl_write_certificate_request() (Found by fatbob)
|
||||||
* Added small fixes for compiler warnings on a Mac
|
* Added small fixes for compiler warnings on a Mac
|
||||||
|
* Fixed algorithmic bug in mpi_is_prime() (Found by
|
||||||
|
Smbat Tonoyan)
|
||||||
|
|
||||||
= Version 0.12.1 released on 2009-10-04
|
= Version 0.12.1 released on 2009-10-04
|
||||||
Changes
|
Changes
|
||||||
|
|
|
@ -1720,8 +1720,8 @@ int mpi_is_prime( mpi *X, int (*f_rng)(void *), void *p_rng )
|
||||||
* W = |X| - 1
|
* W = |X| - 1
|
||||||
* R = W >> lsb( W )
|
* R = W >> lsb( W )
|
||||||
*/
|
*/
|
||||||
s = mpi_lsb( &W );
|
|
||||||
MPI_CHK( mpi_sub_int( &W, X, 1 ) );
|
MPI_CHK( mpi_sub_int( &W, X, 1 ) );
|
||||||
|
s = mpi_lsb( &W );
|
||||||
MPI_CHK( mpi_copy( &R, &W ) );
|
MPI_CHK( mpi_copy( &R, &W ) );
|
||||||
MPI_CHK( mpi_shift_r( &R, s ) );
|
MPI_CHK( mpi_shift_r( &R, s ) );
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue