Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/arm/crypto/aes-cipher.h
29266 views
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 */
14
15