You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
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
|