Skip to content

Commit

Permalink
in ninja-based build, old assembler logic is already handled
Browse files Browse the repository at this point in the history
  • Loading branch information
pittma committed Sep 10, 2024
1 parent 2473469 commit ef26ced
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
2 changes: 0 additions & 2 deletions crypto/fipsmodule/bn/asm/rsaz-2k-avx512.pl
Original file line number Diff line number Diff line change
Expand Up @@ -696,8 +696,6 @@ sub amm52x20_x1_norm {
.byte 0x0f,0x0b # ud2
ret
.size rsaz_amm52x20_x1_ifma256, .-rsaz_amm52x20_x1_ifma256
#endif
___
}}}

Expand Down
2 changes: 0 additions & 2 deletions crypto/fipsmodule/bn/asm/rsaz-3k-avx512.pl
Original file line number Diff line number Diff line change
Expand Up @@ -851,8 +851,6 @@ sub amm52x30_x1_norm {
.byte 0x0f,0x0b # ud2
ret
.size rsaz_amm52x30_x1_ifma256, .-rsaz_amm52x30_x1_ifma256
#endif
___
}}}

Expand Down
2 changes: 0 additions & 2 deletions crypto/fipsmodule/bn/asm/rsaz-4k-avx512.pl
Original file line number Diff line number Diff line change
Expand Up @@ -913,8 +913,6 @@ ()
.byte 0x0f,0x0b # ud2
ret
.size rsaz_amm52x40_x1_ifma256, .-rsaz_amm52x40_x1_ifma256
#endif
___
}}}

Expand Down
3 changes: 2 additions & 1 deletion crypto/impl_dispatch_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -323,9 +323,10 @@ TEST_F(ImplDispatchTest, BN_mod_exp_mont_consttime_x2) {
ret2.get(), a2.get(), e2.get(), m2.get(), mont2,
ctx);

BN_CTX_end(ctx);
BN_MONT_CTX_free(mont1);
BN_MONT_CTX_free(mont2);
BN_CTX_end(ctx);
BN_CTX_free(ctx);
});
});
}
Expand Down

0 comments on commit ef26ced

Please sign in to comment.