From: ben Date: Sun, 5 Jan 2003 23:03:02 +0000 (+0000) Subject: aes_setup() is unused outside this file. Make it static. X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/3ee9758ef264348445ac183b383c3aa6555fe582 aes_setup() is unused outside this file. Make it static. git-svn-id: svn://svn.tartarus.org/sgt/putty@2476 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/sshaes.c b/sshaes.c index ef46c120..9eed7423 100644 --- a/sshaes.c +++ b/sshaes.c @@ -941,7 +941,7 @@ static const word32 D3[256] = { * bytes; each can be either 16 (128-bit), 24 (192-bit), or 32 * (256-bit). */ -void aes_setup(AESContext * ctx, int blocklen, +static void aes_setup(AESContext * ctx, int blocklen, unsigned char *key, int keylen) { int i, j, Nk, rconst;