1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

sshaes.c: remove completely unused #define MAX_NK.

This commit is contained in:
Simon Tatham 2017-10-19 19:13:02 +01:00
parent ea54259392
commit 4dfadcfb26

View File

@ -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) )