lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Sat, 11 Oct 2008 10:13:57 +0800
From:	Herbert Xu <herbert@...dor.apana.org.au>
To:	Linus Torvalds <torvalds@...ux-foundation.org>
Cc:	"David S. Miller" <davem@...emloft.net>,
	Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
	Linux Crypto Mailing List <linux-crypto@...r.kernel.org>
Subject: Re: Crypto Update for 2.6.28

On Fri, Oct 10, 2008 at 11:22:44AM -0700, Linus Torvalds wrote:
> 
> 
> On Fri, 10 Oct 2008, Herbert Xu wrote:
> > 
> > Here is the crypto update for 2.6.28:
> 
> Umm. "Here" was empty.

Sorry, I somehow deleted that bit while adding the changelog :)

> Also, please us
> 
> 	git diff -M --stat --summary
> 
> for the diffstat. That way I would have seen the

Thanks, I'll run that from now on.

Here it is again:

The highlight of this batch is the new run-time self-test framework
for algorithms.  This reorganises the same tests that we've always
had such that they're run at algorithm registration time so that
only algorithms passing the tests of their type are made available
to users.  Hopefully that means people won't be sending me any
more algorithm updates that fail these tests :)

Apart from that a new algorithm type for random number generators.
The only two algorithms in that type are the existing kernel RNG
plus a PRNG based on AES.  This is used by IPsec for IV generation.

We also have a new implementation of CRC32c that uses the Intel
instruction for CRC32c.

Please pull from

git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git

or

master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git


Adrian Bunk (1):
      crypto: Kconfig - Replace leading spaces with tabs

Austin Zhang (1):
      crypto: crc32c - Use Intel CRC32 instruction

Herbert Xu (10):
      crypto: api - Export crypto_alg_lookup instead of __crypto_alg_lookup
      crypto: api - Display larval objects properly
      crypto: tcrypt - Avoid using contiguous pages
      crypto: tcrypt - Abort and only log if there is an error
      crypto: tcrypt - Add alg_test interface
      crypto: cryptomgr - Add test infrastructure
      crypto: api - Use test infrastructure
      crypto: cryptomgr - Test ciphers using ECB
      crypto: skcipher - Move IV generators into their own modules
      crypto: skcipher - Use RNG interface instead of get_random_bytes

Neil Horman (2):
      crypto: api - Add fips_enable flag
      crypto: rng - RNG interface and implementation

 arch/x86/crypto/Makefile           |    2 +
 arch/x86/crypto/crc32c-intel.c     |  197 +
 crypto/Kconfig                     |  127 +-
 crypto/Makefile                    |   12 +-
 crypto/algapi.c                    |  147 +-
 crypto/{cryptomgr.c => algboss.c}  |   92 +-
 crypto/ansi_cprng.c                |  417 ++
 crypto/api.c                       |   81 +-
 crypto/blkcipher.c                 |   29 -
 crypto/chainiv.c                   |   44 +-
 crypto/eseqiv.c                    |   35 +-
 crypto/fips.c                      |   27 +
 crypto/internal.h                  |   18 +-
 crypto/krng.c                      |   66 +
 crypto/proc.c                      |   57 +-
 crypto/rng.c                       |  126 +
 crypto/seqiv.c                     |   27 +-
 crypto/tcrypt.c                    | 1347 +-----
 crypto/tcrypt.h                    | 8709 +-----------------------------------
 crypto/testmgr.c                   | 1868 ++++++++
 crypto/{tcrypt.h => testmgr.h}     |   85 +-
 include/crypto/internal/rng.h      |   26 +
 include/crypto/internal/skcipher.h |    6 -
 include/crypto/rng.h               |   75 +
 include/linux/crypto.h             |   35 +
 25 files changed, 3531 insertions(+), 10124 deletions(-)
 create mode 100644 arch/x86/crypto/crc32c-intel.c
 rename crypto/{cryptomgr.c => algboss.c} (69%)
 create mode 100644 crypto/ansi_cprng.c
 create mode 100644 crypto/fips.c
 create mode 100644 crypto/krng.c
 create mode 100644 crypto/rng.c
 create mode 100644 crypto/testmgr.c
 copy crypto/{tcrypt.h => testmgr.h} (99%)
 create mode 100644 include/crypto/internal/rng.h
 create mode 100644 include/crypto/rng.h

Thanks,
-- 
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@...dor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists