[PATCH 0/3] [v2] AES-NI/AVX implementation of Camellia cipher
From: Jussi Kivilinna <hidden>
Date: 2012-10-26 11:48:49
This patchset adds AES-NI/AVX assembler implementation of Camellia cipher
for x86-64.
[v2]:
- No missing patches
- No missing files
---
Jussi Kivilinna (3):
[v2] crypto: tcrypt - add async speed test for camellia cipher
[v2] crypto: camellia-x86_64 - share common functions and move structures and function definitions to header file
[v2] crypto: camellia - add AES-NI/AVX/x86_64 assembler implementation of camellia cipher
arch/x86/crypto/Makefile | 3
arch/x86/crypto/camellia-aesni-avx-asm_64.S | 1102 +++++++++++++++++++++++++++
arch/x86/crypto/camellia_aesni_avx_glue.c | 558 ++++++++++++++
arch/x86/crypto/camellia_glue.c | 80 +-
arch/x86/include/asm/crypto/camellia.h | 82 ++
crypto/Kconfig | 22 +
crypto/tcrypt.c | 23 +
crypto/testmgr.c | 62 ++
8 files changed, 1875 insertions(+), 57 deletions(-)
create mode 100644 arch/x86/crypto/camellia-aesni-avx-asm_64.S
create mode 100644 arch/x86/crypto/camellia_aesni_avx_glue.c
create mode 100644 arch/x86/include/asm/crypto/camellia.h