mbox series

[PATCHv2,0/3] crypto: inside-secure - Add (HMAC) SHA3 support

Message ID 1568401009-29762-1-git-send-email-pvanleeuwen@verimatrix.com (mailing list archive)
Headers show
Series crypto: inside-secure - Add (HMAC) SHA3 support | expand

Message

Pascal van Leeuwen Sept. 13, 2019, 6:56 p.m. UTC
This patchset adds support for all flavours of sha3-xxx and hmac(sha3-xxx)
ahash algorithms.

The patchset has been tested with the eip197c_iewxkbc configuration on the
Xilinx VCU118 development board, including the testmgr extra tests.

changes snce v1:
- fixed crypto/Kconfig so that generic fallback is compiled as well 

Pascal van Leeuwen (3):
  crypto: inside-secure - Add SHA3 family of basic hash algorithms
  crypto: inside-secure - Add HMAC-SHA3 family of authentication
    algorithms
  crypto: Kconfig - Add CRYPTO_SHA3 to CRYPTO_DEV_SAFEXCEL

 drivers/crypto/Kconfig                       |   1 +
 drivers/crypto/inside-secure/safexcel.c      |   8 +
 drivers/crypto/inside-secure/safexcel.h      |  13 +
 drivers/crypto/inside-secure/safexcel_hash.c | 790 ++++++++++++++++++++++++++-
 4 files changed, 800 insertions(+), 12 deletions(-)

Comments

Herbert Xu Oct. 4, 2019, 3:32 p.m. UTC | #1
On Fri, Sep 13, 2019 at 08:56:46PM +0200, Pascal van Leeuwen wrote:
> This patchset adds support for all flavours of sha3-xxx and hmac(sha3-xxx)
> ahash algorithms.
> 
> The patchset has been tested with the eip197c_iewxkbc configuration on the
> Xilinx VCU118 development board, including the testmgr extra tests.
> 
> changes snce v1:
> - fixed crypto/Kconfig so that generic fallback is compiled as well 
> 
> Pascal van Leeuwen (3):
>   crypto: inside-secure - Add SHA3 family of basic hash algorithms
>   crypto: inside-secure - Add HMAC-SHA3 family of authentication
>     algorithms
>   crypto: Kconfig - Add CRYPTO_SHA3 to CRYPTO_DEV_SAFEXCEL
> 
>  drivers/crypto/Kconfig                       |   1 +
>  drivers/crypto/inside-secure/safexcel.c      |   8 +
>  drivers/crypto/inside-secure/safexcel.h      |  13 +
>  drivers/crypto/inside-secure/safexcel_hash.c | 790 ++++++++++++++++++++++++++-
>  4 files changed, 800 insertions(+), 12 deletions(-)

All applied.  Thanks.