fix indentation

This commit is contained in:
Francois Perrad 2018-12-27 09:21:12 +01:00
parent b6fa97c591
commit c63ce5bf1f

View File

@ -745,12 +745,12 @@ int main(void)
if (mp_cmp(&c, &d) != MP_EQ) { if (mp_cmp(&c, &d) != MP_EQ) {
/* *INDENT-OFF* */ /* *INDENT-OFF* */
printf("d = e mod a, c = e MOD a\n"); printf("d = e mod a, c = e MOD a\n");
mp_todecimal(&a, buf); printf("a = %s\n", buf); mp_todecimal(&a, buf); printf("a = %s\n", buf);
mp_todecimal(&e, buf); printf("e = %s\n", buf); mp_todecimal(&e, buf); printf("e = %s\n", buf);
mp_todecimal(&d, buf); printf("d = %s\n", buf); mp_todecimal(&d, buf); printf("d = %s\n", buf);
mp_todecimal(&c, buf); printf("c = %s\n", buf); mp_todecimal(&c, buf); printf("c = %s\n", buf);
printf("compare no compare!\n"); return EXIT_FAILURE; printf("compare no compare!\n"); return EXIT_FAILURE;
/* *INDENT-ON* */ /* *INDENT-ON* */
} }
/* only one big montgomery reduction */ /* only one big montgomery reduction */