aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/crypto
diff options
context:
space:
mode:
authorArd Biesheuvel <ard.biesheuvel@linaro.org>2019-07-02 21:41:45 +0200
committerHerbert Xu <herbert@gondor.apana.org.au>2019-07-26 14:58:35 +1000
commit1e25ca02a0619c10bc0eae975846926902381ce5 (patch)
treeb504d9d8cec92b2d9d4293a3cbb6b2d2696537fc /include/crypto
parentcrypto: chelsio - replace AES cipher calls with library calls (diff)
downloadwireguard-linux-1e25ca02a0619c10bc0eae975846926902381ce5.tar.xz
wireguard-linux-1e25ca02a0619c10bc0eae975846926902381ce5.zip
crypto: aes-generic - unexport last-round AES tables
The versions of the AES lookup tables that are only used during the last round are never used outside of the driver, so there is no need to export their symbols. Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto')
-rw-r--r--include/crypto/aes.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/crypto/aes.h b/include/crypto/aes.h
index 0a64a977f9b3..df8426fd8051 100644
--- a/include/crypto/aes.h
+++ b/include/crypto/aes.h
@@ -29,9 +29,7 @@ struct crypto_aes_ctx {
};
extern const u32 crypto_ft_tab[4][256] ____cacheline_aligned;
-extern const u32 crypto_fl_tab[4][256] ____cacheline_aligned;
extern const u32 crypto_it_tab[4][256] ____cacheline_aligned;
-extern const u32 crypto_il_tab[4][256] ____cacheline_aligned;
int crypto_aes_set_key(struct crypto_tfm *tfm, const u8 *in_key,
unsigned int key_len);