Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: a5abba989deceb731047425812d268daf7536575 authored by Linus Torvalds on 08 March 2011, 05:09:37 UTC
Linux 2.6.38-rc8
Tip revision: a5abba9
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