diff options
author | Rob Austein <sra@hactrn.net> | 2017-03-06 17:11:21 -0500 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2017-03-06 17:11:21 -0500 |
commit | 2abfa2b7fdd1498d49022141b9a44add1fecafe6 (patch) | |
tree | 603d68faaffa30f082280dfa7b6596a373574cc3 | |
parent | 89e84c71f760203a350dd51cad100c425dc3a1c3 (diff) |
Bump size of some static tables, particuarly pkey slots.
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -27,13 +27,13 @@ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -# Number of static hash and HMAC state blocks to allocate. -# Numbers pulled out of a hat, just testing. +# Number of various kinds of static state blocks to allocate. +# Numbers pulled out of a hat, tune as we go. STATIC_CORE_STATE_BLOCKS = 32 -STATIC_HASH_STATE_BLOCKS = 10 -STATIC_HMAC_STATE_BLOCKS = 4 -STATIC_PKEY_STATE_BLOCKS = 32 +STATIC_HASH_STATE_BLOCKS = 32 +STATIC_HMAC_STATE_BLOCKS = 16 +STATIC_PKEY_STATE_BLOCKS = 256 STATIC_KS_VOLATILE_SLOTS = 128 INC = hal.h hal_internal.h |