From 9a3c126dc09d7e128919886554ec6ce5d1fb88d7 Mon Sep 17 00:00:00 2001 From: "Pavel V. Shatov (Meister)" Date: Thu, 17 Oct 2019 21:11:55 +0300 Subject: - 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 --- vector/vector_regenerate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vector/vector_regenerate.py') 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__": -- cgit v1.2.3