From 014a402b9d42c0fb72e9edd877ff5cbef6c61077 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sun, 5 Jan 2003 23:03:02 +0000 Subject: [PATCH] aes_setup() is unused outside this file. Make it static. [originally from svn r2476] --- sshaes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;