Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / arch / arm / crypto / aes-cipher.h
blobd5db2b87eb69b35a8cf64e3180bb80acfa0083fe
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #ifndef ARM_CRYPTO_AES_CIPHER_H
3 #define ARM_CRYPTO_AES_CIPHER_H
5 #include <linux/linkage.h>
6 #include <linux/types.h>
8 asmlinkage void __aes_arm_encrypt(const u32 rk[], int rounds,
9 const u8 *in, u8 *out);
10 asmlinkage void __aes_arm_decrypt(const u32 rk[], int rounds,
11 const u8 *in, u8 *out);
13 #endif /* ARM_CRYPTO_AES_CIPHER_H */