All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] crypto: add x86_64/avx assembler implementation of cast5 and cast6
@ 2012-07-11 17:36 ` Johannes Goetzfried
  0 siblings, 0 replies; 16+ messages in thread
From: Johannes Goetzfried @ 2012-07-11 17:36 UTC (permalink / raw)
  To: Herbert Xu; +Cc: linux-kernel, linux-crypto, Tilo Mueller

This patchset adds x86_64/avx assembler implementations of the Cast5 and the
Cast6 cipher.

Johannes Goetzfried (6):
  crypto: cast5 - prepare generic module for optimized implementations
  crypto: testmgr - add larger cast5 testvectors
  crypto: cast5 - add x86_64/avx assembler implementation
  crypto: cast6 - prepare generic module for optimized implementations
  crypto: testmgr - add larger cast6 testvectors
  crypto: cast6 - add x86_64/avx assembler implementation

 arch/x86/crypto/Makefile                  |    4 +
 arch/x86/crypto/cast5-avx-x86_64-asm_64.S |  323 ++++
 arch/x86/crypto/cast5_avx_glue.c          |  530 ++++++
 arch/x86/crypto/cast6-avx-x86_64-asm_64.S |  336 ++++
 arch/x86/crypto/cast6_avx_glue.c          |  648 ++++++++
 crypto/Kconfig                            |   31 +
 crypto/Makefile                           |    4 +-
 crypto/cast5.c                            |  809 ---------
 crypto/cast5_generic.c                    |  822 ++++++++++
 crypto/cast6.c                            |  547 -------
 crypto/cast6_generic.c                    |  566 +++++++
 crypto/tcrypt.c                           |   82 +
 crypto/tcrypt.h                           |    1 +
 crypto/testmgr.c                          |  210 +++
 crypto/testmgr.h                          | 2538 +++++++++++++++++++++++++++--
 include/crypto/cast5.h                    |   22 +
 include/crypto/cast6.h                    |   23 +
 17 files changed, 5976 insertions(+), 1520 deletions(-)
 create mode 100644 arch/x86/crypto/cast5-avx-x86_64-asm_64.S
 create mode 100644 arch/x86/crypto/cast5_avx_glue.c
 create mode 100644 arch/x86/crypto/cast6-avx-x86_64-asm_64.S
 create mode 100644 arch/x86/crypto/cast6_avx_glue.c
 delete mode 100644 crypto/cast5.c
 create mode 100644 crypto/cast5_generic.c
 delete mode 100644 crypto/cast6.c
 create mode 100644 crypto/cast6_generic.c
 create mode 100644 include/crypto/cast5.h
 create mode 100644 include/crypto/cast6.h

-- 
1.7.2.5

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2012-07-30  7:55 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-11 17:36 [PATCH 0/6] crypto: add x86_64/avx assembler implementation of cast5 and cast6 Johannes Goetzfried
2012-07-11 17:36 ` Johannes Goetzfried
2012-07-11 17:37 ` [PATCH 1/6] crypto: cast5 - prepare generic module for optimized implementations Johannes Goetzfried
2012-07-11 17:37   ` Johannes Goetzfried
2012-07-11 17:37 ` [PATCH 2/6] crypto: testmgr - add larger cast5 testvectors Johannes Goetzfried
2012-07-11 17:37   ` Johannes Goetzfried
2012-07-11 17:37 ` [PATCH 3/6] crypto: cast5 - add x86_64/avx assembler implementation Johannes Goetzfried
2012-07-11 17:37   ` Johannes Goetzfried
2012-07-11 17:38 ` [PATCH 4/6] crypto: cast6 - prepare generic module for optimized implementations Johannes Goetzfried
2012-07-11 17:38   ` Johannes Goetzfried
2012-07-11 17:38 ` [PATCH 5/6] crypto: testmgr - add larger cast6 testvectors Johannes Goetzfried
2012-07-11 17:38   ` Johannes Goetzfried
2012-07-11 17:38 ` [PATCH 6/6] crypto: cast6 - add x86_64/avx assembler implementation Johannes Goetzfried
2012-07-11 17:38   ` Johannes Goetzfried
2012-07-30  7:55 ` [PATCH 0/6] crypto: add x86_64/avx assembler implementation of cast5 and cast6 Herbert Xu
2012-07-30  7:55   ` Herbert Xu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.