mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 00:16:57 +07:00
70ef2601fe
Move AES header to the new asm/crypto directory. Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
12 lines
279 B
C
12 lines
279 B
C
#ifndef ASM_X86_AES_H
|
|
#define ASM_X86_AES_H
|
|
|
|
#include <linux/crypto.h>
|
|
#include <crypto/aes.h>
|
|
|
|
void crypto_aes_encrypt_x86(struct crypto_aes_ctx *ctx, u8 *dst,
|
|
const u8 *src);
|
|
void crypto_aes_decrypt_x86(struct crypto_aes_ctx *ctx, u8 *dst,
|
|
const u8 *src);
|
|
#endif
|