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

aes_setup() is unused outside this file. Make it static.

[originally from svn r2476]
This commit is contained in:
Ben Harris 2003-01-05 23:03:02 +00:00
parent 88b1506298
commit 014a402b9d

View File

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