aboutsummaryrefslogtreecommitdiffhomepage
path: root/pyecsca/codegen
diff options
context:
space:
mode:
authorJ08nY2025-10-02 17:31:55 +0200
committerJ08nY2025-10-02 17:31:55 +0200
commit88c6ca12c2d13744adc91179fdeb17446f57f15e (patch)
treefa84718f598cd453ff94c96dadd1bf17e2b64b08 /pyecsca/codegen
parentf9ace0287aba10def1f4686a73289fde7598f4ad (diff)
downloadpyecsca-codegen-88c6ca12c2d13744adc91179fdeb17446f57f15e.tar.gz
pyecsca-codegen-88c6ca12c2d13744adc91179fdeb17446f57f15e.tar.zst
pyecsca-codegen-88c6ca12c2d13744adc91179fdeb17446f57f15e.zip
Fix emulator test.
Diffstat (limited to 'pyecsca/codegen')
-rw-r--r--pyecsca/codegen/bn/bn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyecsca/codegen/bn/bn.c b/pyecsca/codegen/bn/bn.c
index 8805b69..d7a44b6 100644
--- a/pyecsca/codegen/bn/bn.c
+++ b/pyecsca/codegen/bn/bn.c
@@ -806,7 +806,7 @@ int32_t bn_booth_word(int32_t digit, int32_t w) {
}
}
-booth_t *bn_booth(const bn_t *bn, int w, size_t bits) {
+booth_t *bn_booth(const bn_t *bn, int32_t w, size_t bits) {
if (w >= 30) {
return NULL;
}