mbox series

[0/5] crypto: remove some obsolete algorithms

Message ID 20210121130733.1649-1-ardb@kernel.org (mailing list archive)
Headers show
Series crypto: remove some obsolete algorithms | expand

Message

Ard Biesheuvel Jan. 21, 2021, 1:07 p.m. UTC
Remove a set of algorithms that are never used in the kernel, and are
highly unlikely to be depended upon by user space either.

Cc: Eric Biggers <ebiggers@google.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>

Ard Biesheuvel (5):
  crypto: remove RIPE-MD 128 hash algorithm
  crypto: remove RIPE-MD 256 hash algorithm
  crypto: remove RIPE-MD 320 hash algorithm
  crypto: remove Tiger 128/160/192 hash algorithms
  crypto: remove Salsa20 stream cipher algorithm

 .../device-mapper/dm-integrity.rst            |    4 +-
 crypto/Kconfig                                |   62 -
 crypto/Makefile                               |    4 -
 crypto/ripemd.h                               |   14 -
 crypto/rmd128.c                               |  323 ----
 crypto/rmd256.c                               |  342 ----
 crypto/rmd320.c                               |  391 -----
 crypto/salsa20_generic.c                      |  212 ---
 crypto/tcrypt.c                               |   87 +-
 crypto/testmgr.c                              |   48 -
 crypto/testmgr.h                              | 1553 -----------------
 crypto/tgr192.c                               |  682 --------
 12 files changed, 3 insertions(+), 3719 deletions(-)
 delete mode 100644 crypto/rmd128.c
 delete mode 100644 crypto/rmd256.c
 delete mode 100644 crypto/rmd320.c
 delete mode 100644 crypto/salsa20_generic.c
 delete mode 100644 crypto/tgr192.c

Comments

Herbert Xu Jan. 29, 2021, 5:10 a.m. UTC | #1
On Thu, Jan 21, 2021 at 02:07:28PM +0100, Ard Biesheuvel wrote:
> Remove a set of algorithms that are never used in the kernel, and are
> highly unlikely to be depended upon by user space either.
> 
> Cc: Eric Biggers <ebiggers@google.com>
> Cc: Herbert Xu <herbert@gondor.apana.org.au>
> 
> Ard Biesheuvel (5):
>   crypto: remove RIPE-MD 128 hash algorithm
>   crypto: remove RIPE-MD 256 hash algorithm
>   crypto: remove RIPE-MD 320 hash algorithm
>   crypto: remove Tiger 128/160/192 hash algorithms
>   crypto: remove Salsa20 stream cipher algorithm
> 
>  .../device-mapper/dm-integrity.rst            |    4 +-
>  crypto/Kconfig                                |   62 -
>  crypto/Makefile                               |    4 -
>  crypto/ripemd.h                               |   14 -
>  crypto/rmd128.c                               |  323 ----
>  crypto/rmd256.c                               |  342 ----
>  crypto/rmd320.c                               |  391 -----
>  crypto/salsa20_generic.c                      |  212 ---
>  crypto/tcrypt.c                               |   87 +-
>  crypto/testmgr.c                              |   48 -
>  crypto/testmgr.h                              | 1553 -----------------
>  crypto/tgr192.c                               |  682 --------
>  12 files changed, 3 insertions(+), 3719 deletions(-)
>  delete mode 100644 crypto/rmd128.c
>  delete mode 100644 crypto/rmd256.c
>  delete mode 100644 crypto/rmd320.c
>  delete mode 100644 crypto/salsa20_generic.c
>  delete mode 100644 crypto/tgr192.c

All applied.  Thanks.