aboutsummaryrefslogtreecommitdiff
path: root/vector/vector_regenerate.py
diff options
context:
space:
mode:
authorPavel V. Shatov (Meister) <meisterpaul1@yandex.ru>2019-10-17 21:11:55 +0300
committerPavel V. Shatov (Meister) <meisterpaul1@yandex.ru>2019-10-17 21:14:01 +0300
commit9a3c126dc09d7e128919886554ec6ce5d1fb88d7 (patch)
tree1c0d46cadc04f6e147b45b1d0122f09803a01149 /vector/vector_regenerate.py
parent00fd9dea38057e0f5e8d3e66722c8cb3ef9fba6b (diff)
- Switched to default key length of 512 for faster simulation
- Added an option to dump vectors as C array initializers for easy import into the STM32 sample driver - Added an option to dump entire core memory to assist debugging in hardware - Reading from bank now returns a copy of its contents, not a link - Reworked how carry propagation works (no more in-place overwrites) - Implemented "caching" of bank contents to match how things actually work in hardware (eg. after switching to twice smaller modulus before doing the CRT ladder, the upper half of the larger modulus stays in place) - Optimized microcode - Various cosmetic fixes
Diffstat (limited to 'vector/vector_regenerate.py')
-rw-r--r--vector/vector_regenerate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vector/vector_regenerate.py b/vector/vector_regenerate.py
index 34c6384..b8a9373 100644
--- a/vector/vector_regenerate.py
+++ b/vector/vector_regenerate.py
@@ -38,7 +38,7 @@ import vector_util
SCRIPT_USAGE = "USAGE: vector_regenerate.py [openssl_binary]"
-KEY_LENGTH = 1024
+KEY_LENGTH = 512
if __name__ == "__main__":