Re: [PATCH 2/3] lib/mpi: Add mpi_sub_ui()

2020-07-10 Thread Stephan Mueller
Am Freitag, 10. Juli 2020, 16:42:39 CEST schrieb Ard Biesheuvel: Hi Ard, > On Fri, 10 Jul 2020 at 13:16, Stephan Müller wrote: > > Add mpi_sub_ui() based on Gnu PG mpz_sub_ui() from mpz/aors_ui.h > > adapting the code to the kernel's structures and coding style and also > > removing the defines

Re: [PATCH 2/3] lib/mpi: Add mpi_sub_ui()

2020-07-10 Thread Ard Biesheuvel
On Fri, 10 Jul 2020 at 13:16, Stephan Müller wrote: > > Add mpi_sub_ui() based on Gnu PG mpz_sub_ui() from mpz/aors_ui.h > adapting the code to the kernel's structures and coding style and also > removing the defines used to produce mpz_sub_ui() and mpz_add_ui() > from the same code. > Isn't GnuP

[PATCH 2/3] lib/mpi: Add mpi_sub_ui()

2020-07-10 Thread Stephan Müller
Add mpi_sub_ui() based on Gnu PG mpz_sub_ui() from mpz/aors_ui.h adapting the code to the kernel's structures and coding style and also removing the defines used to produce mpz_sub_ui() and mpz_add_ui() from the same code. Signed-off-by: Marcelo Henrique Cerri Signed-off-by: Stephan Mueller ---