[Cryptech-Commits] [core/platform/common] 02/02: Track Joachim's latest keywrap core - unroll bank-switched memory into a number of core register blocks.

git at cryptech.is git at cryptech.is
Tue Sep 11 23:07:01 UTC 2018


This is an automated email from the git hooks/post-receive script.

paul at psgd.org pushed a commit to branch js_keywrap
in repository core/platform/common.

commit 165585268fd95a80d848d4a4be6b965cda1088cc
Author: Paul Selkirk <paul at psgd.org>
AuthorDate: Tue Sep 11 18:55:54 2018 -0400

    Track Joachim's latest keywrap core - unroll bank-switched memory into a number of core register blocks.
---
 config/core.cfg       | 3 ++-
 config/core_config.py | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/config/core.cfg b/config/core.cfg
index 2194733..67497e6 100644
--- a/config/core.cfg
+++ b/config/core.cfg
@@ -80,7 +80,7 @@ cores = mkmif
 [project rsa]
 # RSA signing and verification. This is as much as will fit on the
 # Novena's Spartan-6 FPGA.
-cores = sha256 aes trng modexp
+cores = sha256 aes trng modexp mkmif
 
 [project hsm]
 # Make me one with everything, except we want two modexp cores for parallel CRT
@@ -383,6 +383,7 @@ vfiles =
 [core keywrap]
 # Joachim's experimental AES-keywrap core
 requires = aes
+core blocks = 32
 block memory = yes
 error wire = yes
 module name = keywrap
diff --git a/config/core_config.py b/config/core_config.py
index 4033279..d84f8f1 100755
--- a/config/core_config.py
+++ b/config/core_config.py
@@ -226,7 +226,7 @@ class Core(object):
         self.block_max = self.blocks - 1
         if self.blocks > 1:
             try:
-                self.block_bits = {4:2, 8:3, 16:4}[self.blocks]
+                self.block_bits = {4:2, 8:3, 16:4, 32:5}[self.blocks]
             except KeyError:
                 raise ValueError, "In [{}]: unexpected value \"core blocks = {}\"".format(self.cfg_section, self.blocks)
             self.block_bit_max = self.block_bits - 1



More information about the Commits mailing list