diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-09-02 06:15:02 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-09-02 06:15:02 +0200 |
commit | 4c52aedfe92da7efe85e3b855855acb94863e084 (patch) | |
tree | 48db6386ae6c26f07e888e0ef240a2e10c60d2e5 /sys/src/libsec | |
parent | 46926aa50246c1b68ac685ae8cb396de1d60e726 (diff) |
libsec: declare aes_setupEnc static
Diffstat (limited to 'sys/src/libsec')
-rw-r--r-- | sys/src/libsec/port/aes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/libsec/port/aes.c b/sys/src/libsec/port/aes.c index 4ce653784..d55621884 100644 --- a/sys/src/libsec/port/aes.c +++ b/sys/src/libsec/port/aes.c @@ -969,7 +969,7 @@ static const u32 rcon[] = { * * @return the number of rounds for the given cipher key size. */ -int +static int aes_setupEnc(ulong rk[/*4*(Nr + 1)*/], const uchar cipherKey[], int keyBits) { int i = 0; |