You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
279 B
12 lines
279 B
16 years ago
|
#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
|