From 4dfadcfb2643fe3b54bb29277ca73bc5ba647208 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Thu, 19 Oct 2017 19:13:02 +0100 Subject: [PATCH] sshaes.c: remove completely unused #define MAX_NK. --- sshaes.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sshaes.c b/sshaes.c index 0368d6e9..9be58dab 100644 --- a/sshaes.c +++ b/sshaes.c @@ -33,7 +33,6 @@ #include "ssh.h" #define MAX_NR 14 /* max no of rounds */ -#define MAX_NK 8 /* max no of words in input key */ #define MAX_NB 8 /* max no of words in cipher blk */ #define mulby2(x) ( ((x&0x7F) << 1) ^ (x & 0x80 ? 0x1B : 0) )