All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/7] staging: skein: CryptoAPI and Module Support
@ 2014-10-24 11:16 Eric Rost
  2014-10-24 11:16 ` [PATCH v4 1/7] staging: skein: Collapses threefish module Eric Rost
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Eric Rost @ 2014-10-24 11:16 UTC (permalink / raw)
  To: gregkh, jason, jake, antonysaraev; +Cc: devel, linux-kernel

Adds CryptoAPI and Module support to Skein Hash Algorithm. Also inlines
rotl_64 macro, and removes nonexistent header references.

Eric Rost (7):
  staging: skein: Collapses threefish module
  staging: skein: Renames skein to skein_base
  staging: skein: Adds CryptoAPI Support
  staging: skein: Adds Loadable Module Support
  staging: skein: Inlines rotl_64
  staging: skein: Removes unneeded #define
  staging: skein: Removes skein_debug include

 drivers/staging/skein/Kconfig         |  24 +-
 drivers/staging/skein/Makefile        |  13 +-
 drivers/staging/skein/skein.c         | 883 ----------------------------------
 drivers/staging/skein/skein.h         | 346 -------------
 drivers/staging/skein/skein_api.h     |   2 +-
 drivers/staging/skein/skein_base.c    | 882 +++++++++++++++++++++++++++++++++
 drivers/staging/skein/skein_base.h    | 345 +++++++++++++
 drivers/staging/skein/skein_block.c   |   2 +-
 drivers/staging/skein/skein_block.h   |   2 +-
 drivers/staging/skein/skein_generic.c | 208 ++++++++
 drivers/staging/skein/skein_iv.h      |   2 +-
 drivers/staging/skein/threefish_api.h |   2 +-
 12 files changed, 1451 insertions(+), 1260 deletions(-)
 delete mode 100644 drivers/staging/skein/skein.c
 delete mode 100644 drivers/staging/skein/skein.h
 create mode 100644 drivers/staging/skein/skein_base.c
 create mode 100644 drivers/staging/skein/skein_base.h
 create mode 100644 drivers/staging/skein/skein_generic.c

-- 
2.1.1


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

end of thread, other threads:[~2014-10-24 11:23 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-24 11:16 [PATCH v4 0/7] staging: skein: CryptoAPI and Module Support Eric Rost
2014-10-24 11:16 ` [PATCH v4 1/7] staging: skein: Collapses threefish module Eric Rost
2014-10-24 11:17 ` [PATCH v4 2/7] staging: skein: Renames skein to skein_base Eric Rost
2014-10-24 11:17 ` [PATCH v4 3/7] staging: skein: Adds CryptoAPI Support Eric Rost
2014-10-24 11:18 ` [PATCH v4 4/7] staging: skein: Adds Loadable Module Support Eric Rost
2014-10-24 11:19 ` [PATCH v4 5/7] staging: skein: Inlines rotl_64 Eric Rost
2014-10-24 11:19 ` [PATCH v4 6/7] staging: skein: Removes unneeded #define Eric Rost
2014-10-24 11:20 ` [PATCH v4 7/7] staging: skein: Removes skein_debug include Eric Rost
2014-10-24 11:23 ` [PATCH v4 0/7] staging: skein: CryptoAPI and Module Support Eric Rost

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.