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:	Fri, 5 Jul 2013 19:52:40 +1000
From:	Herbert Xu <herbert@...dor.apana.org.au>
To:	Linus Torvalds <torvalds@...ux-foundation.org>,
	"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: Crypto Update for 3.11

Hi Linus:

Here is the crypto update for 3.11:

* Do not idle omap device between crypto operations in one session.
* Added sha224/sha384 shims for SSSE3.
* More optimisations for camellia-aesni-avx2.
* Removed defunct blowfish/twofish AVX2 implementations.
* Added unaligned buffer self-tests.
* Added PCLMULQDQ optimisation for CRCT10DIF.
* Added support for Freescale's DCP co-processor
* Misc fixes.


Please pull from

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


Andrei Varvara (8):
      crypto: caam - fix SEQ IN PTR command when RTO or PRE bit is set
      crypto: caam - Fix STORE command to support overwriting Shared Descriptor's memory
      crypto: caam - Add MATH command to support shld function
      crypto: caam - Add new macros for building extended SEC descriptors (> 64 words)
      crypto: caam - Add defines for overwriting Descriptor's memory
      crypto: caam - Add defines for CAAM commands
      crypto: caam - Add define for Adjust Output Frame Length in PDB
      crypto: caam - add missing flag for the LOAD/STORE commands

Arnd Bergmann (1):
      hwrng: bcm2835 - fix MODULE_LICENSE tag

Herbert Xu (2):
      crypto: crct10dif - Use PTR_RET
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto

Jingoo Han (6):
      hwrng: atmel - remove unnecessary platform_set_drvdata()
      hwrng: bcm63xx - remove unnecessary platform_set_drvdata()
      hwrng: timeriomem - remove unnecessary platform_set_drvdata()
      hwrng: tx4939 - remove unnecessary platform_set_drvdata()
      hwrng: use platform_{get,set}_drvdata()
      crypto: picoxcell - replace strict_strtoul() with kstrtoul()

Joel A Fernandes (1):
      crypto: omap-aes - Don't idle/start AES device between Encrypt operations

Jussi Kivilinna (10):
      crypto: sha512_generic - set cra_driver_name
      crypto: sha512_ssse3 - add sha384 support
      crypto: sha256_ssse3 - add sha224 support
      crypto: camellia-aesni-avx2 - tune assembly code for more performance
      Revert "crypto: blowfish - add AVX2/x86_64 implementation of blowfish cipher"
      Revert "crypto: twofish - add AVX2/x86_64 assembler implementation of twofish cipher"
      crypto: testmgr - check that entries in alg_test_descs are in correct order
      crypto: testmgr - test skciphers with unaligned buffers
      crypto: testmgr - test AEADs with unaligned buffers
      crypto: testmgr - test hash implementations with unaligned buffers

Lars-Peter Clausen (1):
      crypto: hifn_795x - Pass correct pointer to free_irq()

Laurent Navet (1):
      drivers: crypto: use devm_ioremap_resource()

Linus Walleij (1):
      hwrng: nomadik - use clk_prepare_enable()

Paul Bolle (1):
      crypto: sahara - remove dependency on EXPERIMENTAL

Ruchika Gupta (1):
      crypto: caam - FIX RNG init for RNG greater than equal to 4

Sachin Kamat (6):
      crypto: mv_cesa: Remove redundant platform_set_drvdata()
      crypto: s5p-sss: Remove redundant platform_set_drvdata()
      crypto: dcp - Remove redundant platform_set_drvdata()
      crypto: dcp - Use devm_* APIs
      crypto: dcp - Use NULL instead of 0
      crypto: dcp - Staticize local symbols

Thomas Meyer (1):
      crypto: ux500 - Cocci spatch "resource_size.spatch"

Tim Chen (4):
      crypto: crct10dif - Wrap crc_t10dif function all to use crypto transform framework
      crypto: crct10dif - Accelerated CRC T10 DIF computation with PCLMULQDQ instruction
      crypto: crct10dif - Glue code to cast accelerated CRCT10DIF assembly as a crypto transform
      crypto: crct10dif - Simple correctness and speed test for CRCT10DIF hash

Tobias Rauter (1):
      crypto: dcp - Added support for Freescale's DCP co-processor

 arch/arm/boot/dts/imx28.dtsi                 |    2 +-
 arch/x86/crypto/Makefile                     |    8 +-
 arch/x86/crypto/blowfish-avx2-asm_64.S       |  449 -------------
 arch/x86/crypto/blowfish_avx2_glue.c         |  585 -----------------
 arch/x86/crypto/blowfish_glue.c              |   32 +-
 arch/x86/crypto/camellia-aesni-avx2-asm_64.S |  160 +++--
 arch/x86/crypto/crct10dif-pcl-asm_64.S       |  643 ++++++++++++++++++
 arch/x86/crypto/crct10dif-pclmul_glue.c      |  151 +++++
 arch/x86/crypto/sha256_ssse3_glue.c          |   57 ++-
 arch/x86/crypto/sha512_ssse3_glue.c          |   58 ++-
 arch/x86/crypto/twofish-avx2-asm_64.S        |  600 -----------------
 arch/x86/crypto/twofish_avx2_glue.c          |  584 ----------------
 arch/x86/crypto/twofish_avx_glue.c           |   14 +-
 arch/x86/include/asm/crypto/blowfish.h       |   43 --
 arch/x86/include/asm/crypto/twofish.h        |   18 -
 crypto/Kconfig                               |   63 +--
 crypto/Makefile                              |    1 +
 crypto/crct10dif.c                           |  178 +++++
 crypto/sha512_generic.c                      |    2 +
 crypto/tcrypt.c                              |    8 +
 crypto/testmgr.c                             |  176 ++++-
 crypto/testmgr.h                             |   33 +
 drivers/char/hw_random/atmel-rng.c           |    2 -
 drivers/char/hw_random/bcm2835-rng.c         |    2 +-
 drivers/char/hw_random/bcm63xx-rng.c         |    2 -
 drivers/char/hw_random/n2-drv.c              |    6 +-
 drivers/char/hw_random/nomadik-rng.c         |    2 +-
 drivers/char/hw_random/octeon-rng.c          |    4 +-
 drivers/char/hw_random/omap-rng.c            |    6 +-
 drivers/char/hw_random/timeriomem-rng.c      |    2 -
 drivers/char/hw_random/tx4939-rng.c          |    1 -
 drivers/crypto/Kconfig                       |   12 +-
 drivers/crypto/Makefile                      |    1 +
 drivers/crypto/caam/ctrl.c                   |   10 +-
 drivers/crypto/caam/desc.h                   |   22 +-
 drivers/crypto/caam/desc_constr.h            |   81 +++-
 drivers/crypto/caam/pdb.h                    |    1 +
 drivers/crypto/caam/regs.h                   |   42 ++-
 drivers/crypto/dcp.c                         |  912 ++++++++++++++++++++++++++
 drivers/crypto/hifn_795x.c                   |    4 +-
 drivers/crypto/mv_cesa.c                     |    1 -
 drivers/crypto/omap-aes.c                    |   36 +-
 drivers/crypto/omap-sham.c                   |    7 +-
 drivers/crypto/picoxcell_crypto.c            |    2 +-
 drivers/crypto/s5p-sss.c                     |    2 -
 drivers/crypto/ux500/cryp/cryp_core.c        |    2 +-
 include/linux/crc-t10dif.h                   |    4 +
 lib/Kconfig                                  |    2 +
 lib/crc-t10dif.c                             |   73 +--
 49 files changed, 2542 insertions(+), 2564 deletions(-)

Thanks,
-- 
Email: Herbert Xu <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

Powered by Openwall GNU/*/Linux Powered by OpenVZ