diff options
| -rw-r--r-- | MANIFEST.in | 5 | ||||
| -rw-r--r-- | test/sca/test_rpa.py | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index b3ff14f..12be3ea 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,6 @@ include README.md graft pyecsca/ec/efd/ -graft pyecsca/ec/std/
\ No newline at end of file +graft pyecsca/ec/std/ +global-exclude .git* +exclude pyecsca/ec/efd/README.md pyecsca/ec/std/README.md +prune pyecsca/ec/std/.github/
\ No newline at end of file diff --git a/test/sca/test_rpa.py b/test/sca/test_rpa.py index ee10f89..71c846c 100644 --- a/test/sca/test_rpa.py +++ b/test/sca/test_rpa.py @@ -59,9 +59,7 @@ class MultipleContextTests(TestCase): with local(MultipleContext()) as ctx: ladd_mult.init(curve25519, base) ladd_mult.multiply(1339278426732672313) - print(ctx.points.values()) dadd_mult = DifferentialLadderMultiplier(dadd, dbl, scale) with local(MultipleContext()) as ctx: dadd_mult.init(curve25519, base) dadd_mult.multiply(1339278426732672313) - print(ctx.points.values()) |
