All of lore.kernel.org
 help / color / mirror / Atom feed
From: Johannes Goetzfried <Johannes.Goetzfried@informatik.stud.uni-erlangen.de>
To: Herbert Xu <herbert@gondor.apana.org.au>
Cc: linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org,
	Tilo Mueller <tilo.mueller@informatik.uni-erlangen.de>
Subject: [PATCH 0/6] crypto: add x86_64/avx assembler implementation of cast5 and cast6
Date: Wed, 11 Jul 2012 19:36:46 +0200	[thread overview]
Message-ID: <cover.1342027375.git.johannes@goetzfried-amberg.de> (raw)

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

WARNING: multiple messages have this Message-ID (diff)
From: Johannes Goetzfried  <Johannes.Goetzfried@informatik.stud.uni-erlangen.de>
To: Herbert Xu <herbert@gondor.hengli.com.au>
Cc: linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org,
	Tilo Mueller <tilo.mueller@informatik.uni-erlangen.de>
Subject: [PATCH 0/6] crypto: add x86_64/avx assembler implementation of cast5 and cast6
Date: Wed, 11 Jul 2012 19:36:46 +0200	[thread overview]
Message-ID: <cover.1342027375.git.johannes@goetzfried-amberg.de> (raw)

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


             reply	other threads:[~2012-07-11 17:36 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-11 17:36 Johannes Goetzfried [this message]
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: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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1342027375.git.johannes@goetzfried-amberg.de \
    --to=johannes.goetzfried@informatik.stud.uni-erlangen.de \
    --cc=herbert@gondor.apana.org.au \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=tilo.mueller@informatik.uni-erlangen.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.