OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
arch
/
x86
/
include
/
asm
/
crypto
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:22 AM
rwxr-xr-x
📄
aes.h
318 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
camellia.h
3.16 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
glue_helper.h
4.64 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
serpent-avx.h
1.47 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
serpent-sse2.h
1.53 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
twofish.h
1.43 KB
01/28/2018 09:20:33 PM
rw-r--r--
Editing: aes.h
Close
/* SPDX-License-Identifier: GPL-2.0 */ #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