]> Git Repo - J-linux.git/blob - arch/arm/crypto/aes-cipher.h
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / arch / arm / crypto / aes-cipher.h
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #ifndef ARM_CRYPTO_AES_CIPHER_H
3 #define ARM_CRYPTO_AES_CIPHER_H
4
5 #include <linux/linkage.h>
6 #include <linux/types.h>
7
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);
12
13 #endif /* ARM_CRYPTO_AES_CIPHER_H */
This page took 0.027156 seconds and 4 git commands to generate.