Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 1406de8e11eb043681297adf86d6892ff8efc27a authored by Linus Torvalds on 16 May 2009, 04:12:57 UTC
Linux 2.6.30-rc6
Tip revision: 1406de8
aes.h
#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
back to top