From 1ceb5752a309397799e9ef4a99ff1b327fc42a8d Mon Sep 17 00:00:00 2001 From: Paul Selkirk Date: Mon, 26 Feb 2018 16:06:42 -0500 Subject: Implement hash-based signatures, per draft-mcgrew-hash-sigs-08.txt --- projects/hsm/hsm.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'projects/hsm/hsm.c') diff --git a/projects/hsm/hsm.c b/projects/hsm/hsm.c index 7fc7410..3f7a6fd 100644 --- a/projects/hsm/hsm.c +++ b/projects/hsm/hsm.c @@ -90,18 +90,11 @@ static uint8_t busy_stack[BUSY_STACK_SIZE]; #endif static uint8_t cli_stack[CLI_STACK_SIZE]; -#ifndef MAX_PKT_SIZE -/* An arbitrary number, more or less driven by the 4096-bit RSA - * keygen test. - */ -#define MAX_PKT_SIZE 4096 -#endif - /* RPC buffers. For each active request, there will be two - input and output. */ typedef struct rpc_buffer_s { size_t len; - uint8_t buf[MAX_PKT_SIZE]; + uint8_t buf[HAL_RPC_MAX_PKT_SIZE]; struct rpc_buffer_s *next; /* for ibuf queue linking */ } rpc_buffer_t; -- cgit v1.2.3