diff options
| author | J08nY | 2024-01-31 13:42:19 +0100 |
|---|---|---|
| committer | J08nY | 2024-01-31 13:42:19 +0100 |
| commit | c72a864e71806cba5bc5f71a6bad084574897cd1 (patch) | |
| tree | 9fd151b8668a0ba4d08f755d823424897c6a4377 | |
| parent | 76192be46169a5269f4463ac2763cbd28492c1d6 (diff) | |
| download | pyecsca-c72a864e71806cba5bc5f71a6bad084574897cd1.tar.gz pyecsca-c72a864e71806cba5bc5f71a6bad084574897cd1.tar.zst pyecsca-c72a864e71806cba5bc5f71a6bad084574897cd1.zip | |
Silence pari memory warnings.
| -rw-r--r-- | pyecsca/sca/re/zvp.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pyecsca/sca/re/zvp.py b/pyecsca/sca/re/zvp.py index c4e1496..4fe2d3d 100644 --- a/pyecsca/sca/re/zvp.py +++ b/pyecsca/sca/re/zvp.py @@ -577,6 +577,7 @@ def solve_hard_dcp_cypari( stacksizemax = 15 * stacksize pari = cypari2.Pari() + pari.default("debugmem", 0) # silence stack warnings pari.allocatemem(stacksize, stacksizemax, silent=True) e = pari.ellinit([a, b], curve.prime) mul = pari.ellxn(e, k) |
