linux-crypto.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2019-03-15 04:24:42 to 2019-03-28 06:07:21 UTC [more...]

[PATCH -next] crypto: cavium - Make cptvf_device_init static
 2019-03-28  6:07 UTC  (2+ messages)

[PATCH -next] crypto: brcm - remove unused array tag_to_hash_idx
 2019-03-28  6:07 UTC  (2+ messages)

[PATCH -next] crypto: zip - Make some functions static
 2019-03-28  6:07 UTC  (2+ messages)

[PATCH -next] crypto: ccp - Make ccp_register_rsa_alg static
 2019-03-28  6:06 UTC  (3+ messages)

[PATCH -next] crypto: cavium - Make some functions static
 2019-03-28  6:06 UTC  (2+ messages)

[PATCH -next] crypto: cavium - remove unused fucntions
 2019-03-28  6:06 UTC  (2+ messages)

[RFC PATCH] crypto: chtls - handle inet_csk_reqsk_queue_add() failures
 2019-03-28  5:39 UTC  (2+ messages)

[PATCH v8 00/10] crypto: add EC-RDSA (GOST 34.10) algorithm
 2019-03-27 20:21 UTC  (17+ messages)
` [PATCH v8 01/10] crypto: akcipher - default implementations for request callbacks
` [PATCH v8 02/10] crypto: rsa - unimplement sign/verify for raw RSA backends
` [PATCH v8 03/10] crypto: akcipher - new verify API for public key algorithms
` [PATCH v8 04/10] KEYS: do not kmemdup digest in {public,tpm}_key_verify_signature
` [PATCH v8 05/10] X.509: parse public key parameters from x509 for akcipher
` [PATCH v8 06/10] crypto: Kconfig - create Public-key cryptography section
` [PATCH v8 07/10] crypto: ecc - make ecc into separate module
` [PATCH v8 08/10] crypto: ecrdsa - add EC-RDSA (GOST 34.10) algorithm
` [PATCH v8 09/10] crypto: ecrdsa - add EC-RDSA test vectors to testmgr
` [PATCH v8 10/10] integrity: support EC-RDSA signatures for asymmetric_verify

[PATCH] X.509: Add messages for obsolete OIDs
 2019-03-27 19:36 UTC  (2+ messages)

[PATCH AUTOSEL 5.0 067/262] crypto: crypto4xx - add missing of_node_put after of_device_is_available
 2019-03-27 18:01 UTC  (3+ messages)
` [PATCH AUTOSEL 5.0 068/262] crypto: cavium/zip - fix collision with generic cra_driver_name
` [PATCH AUTOSEL 5.0 216/262] hwrng: virtio - Avoid repeated init of completion

[PATCH AUTOSEL 4.19 049/192] crypto: crypto4xx - add missing of_node_put after of_device_is_available
 2019-03-27 18:09 UTC  (3+ messages)
` [PATCH AUTOSEL 4.19 050/192] crypto: cavium/zip - fix collision with generic cra_driver_name
` [PATCH AUTOSEL 4.19 160/192] hwrng: virtio - Avoid repeated init of completion

[PATCH AUTOSEL 4.14 034/123] crypto: crypto4xx - add missing of_node_put after of_device_is_available
 2019-03-27 18:16 UTC  (3+ messages)
` [PATCH AUTOSEL 4.14 035/123] crypto: cavium/zip - fix collision with generic cra_driver_name
` [PATCH AUTOSEL 4.14 101/123] hwrng: virtio - Avoid repeated init of completion

[PATCH AUTOSEL 4.9 25/87] crypto: crypto4xx - add missing of_node_put after of_device_is_available
 2019-03-27 18:20 UTC  (2+ messages)
` [PATCH AUTOSEL 4.9 70/87] hwrng: virtio - Avoid repeated init of completion

[PATCH AUTOSEL 4.4 52/63] hwrng: virtio - Avoid repeated init of completion
 2019-03-27 18:23 UTC 

[PATCH AUTOSEL 3.18 33/41] hwrng: virtio - Avoid repeated init of completion
 2019-03-27 18:25 UTC 

[PATCH v2] HID: add driver for U2F Zero built-in LED and RNG
 2019-03-27 14:07 UTC  (4+ messages)

[PATCH net-next v9 00/19] WireGuard: Secure Network Tunnel
 2019-03-26 17:38 UTC  (29+ messages)
` [PATCH net-next v9 01/19] asm: simd context helper API
` [PATCH net-next v9 02/19] zinc: introduce minimal cryptography library
` [PATCH net-next v9 03/19] zinc: ChaCha20 generic C implementation and selftest
` [PATCH net-next v9 04/19] zinc: ChaCha20 x86_64 implementation
` [PATCH net-next v9 05/19] zinc: ChaCha20 ARM and ARM64 implementations
` [PATCH net-next v9 06/19] zinc: ChaCha20 MIPS32r2 implementation
` [PATCH net-next v9 07/19] zinc: Poly1305 generic C implementations and selftest
` [PATCH net-next v9 08/19] zinc: Poly1305 x86_64 implementation
` [PATCH net-next v9 09/19] zinc: Poly1305 ARM and ARM64 implementations
` [PATCH net-next v9 10/19] zinc: Poly1305 MIPS64 and MIPS32r2 implementations
` [PATCH net-next v9 11/19] zinc: ChaCha20Poly1305 construction and selftest
` [PATCH net-next v9 12/19] zinc: BLAKE2s generic C implementation "
` [PATCH net-next v9 13/19] zinc: BLAKE2s x86_64 implementation
` [PATCH net-next v9 14/19] zinc: Curve25519 generic C implementations and selftest
` [PATCH net-next v9 15/19] zinc: Curve25519 x86_64 implementation
` [PATCH net-next v9 16/19] zinc: import Bernstein and Schwabe's Curve25519 ARM implementation
` [PATCH net-next v9 17/19] zinc: "
` [PATCH net-next v9 18/19] security/keys: rewrite big_key crypto to use Zinc
` [PATCH net-next v9 19/19] net: WireGuard secure network tunnel

[PATCH 0/17] Add zinc using existing algorithm implementations
 2019-03-26  9:46 UTC  (26+ messages)
` [PATCH 1/17] asm: simd context helper API
` [PATCH 2/17] crypto: chacha20 - Export chacha20 functions without crypto API
` [PATCH 3/17] zinc: introduce minimal cryptography library
` [PATCH 4/17] zinc: Add generic C implementation of chacha20 and self-test
` [PATCH 5/17] zinc: Add x86 accelerated ChaCha20
` [PATCH 6/17] zinc: Add arm accelerated chacha20
` [PATCH 7/17] crypto: poly1305 - Export core functions without crypto API
` [PATCH 8/17] zinc: Add generic C implementation of poly1305 and self-test
` [PATCH 9/17] zinc: Add x86 accelerated poly1305
` [PATCH 10/17] zinc: ChaCha20Poly1305 construction and selftest
` [PATCH 11/17] zinc: BLAKE2s generic C implementation "
` [PATCH 12/17] zinc: BLAKE2s x86_64 implementation
` [PATCH 13/17] zinc: Curve25519 generic C implementations and selftest
` [PATCH 14/17] zinc: Curve25519 x86_64 implementation
` [PATCH 15/17] zinc: import Bernstein and Schwabe's Curve25519 ARM implementation
` [PATCH 16/17] zinc: "
` [PATCH 17/17] security/keys: rewrite big_key crypto to use Zinc

Bad file pattern in MAINTAINERS section 'IBM Power in-Nest Crypto Acceleration'
 2019-03-25 21:26 UTC 

[Bug] Rockchip crypto driver sometimes produces wrong ciphertext
 2019-03-25  6:31 UTC  (5+ messages)

Should we consider removing Streebog from the Linux Kernel?
 2019-03-25  6:00 UTC  (2+ messages)

[RFC v7.1] crypto: akcipher - default implementations for request callbacks
 2019-03-23  4:43 UTC 

INFO: task hung in tls_sw_free_resources_tx
 2019-03-23  0:56 UTC 

[PATCH v7 00/11] crypto: add EC-RDSA (GOST 34.10) algorithm
 2019-03-22 22:41 UTC  (16+ messages)
` [PATCH v7 02/11] crypto: akcipher - check the presence of callback before the call
` [PATCH v7 03/11] crypto: rsa - unimplement sign/verify for raw RSA backends
` [PATCH v7 05/11] KEYS: do not kmemdup digest in {public,tpm}_key_verify_signature
` [PATCH v7 06/11] X.509: parse public key parameters from x509 for akcipher
` [PATCH v7 11/11] integrity: support EC-RDSA signatures for asymmetric_verify

[RFC PATCH v3 00/18] fscrypt: key management improvements
 2019-03-22 22:02 UTC  (7+ messages)
` [RFC PATCH v3 07/18] fscrypt: add FS_IOC_ADD_ENCRYPTION_KEY ioctl

[possible PATCH] crypto: sahara - Use #ifdef DEBUG not IS_ENABLED(DEBUG)
 2019-03-22 16:29 UTC  (8+ messages)

[PATCH] crypto: caam - limit AXI pipeline to a depth of 1
 2019-03-22 13:49 UTC  (2+ messages)

[PATCH] crypto: Kconfig - fix typos AEGSI -> AEGIS
 2019-03-22 13:04 UTC  (2+ messages)

[PATCH] crypto: salsa20-generic - use crypto_xor_cpy()
 2019-03-22 13:04 UTC  (2+ messages)

[PATCH] crypto: chacha-generic - use crypto_xor_cpy()
 2019-03-22 13:04 UTC  (2+ messages)

[PATCH] crypto: ccree - reduce kernel stack usage with clang
 2019-03-22 13:04 UTC  (3+ messages)

[PATCH] crypto: vmx - fix copy-paste error in CTR mode
 2019-03-22 13:04 UTC  (11+ messages)

[PATCH] hwrng: omap - Set default quality
 2019-03-22 13:03 UTC  (2+ messages)

[PATCH 0/8] crypto: test the !may_use_simd() fallback code
 2019-03-22 13:03 UTC  (2+ messages)

[PATCH 0/9] crypto: add SIMD helpers for AEADs
 2019-03-22 13:03 UTC  (3+ messages)

[PATCH v3] crypto: caam/jr - optimize job ring enqueue and dequeue operations
 2019-03-22 13:02 UTC  (2+ messages)

[PATCH] crypto: caam - fix copy of next buffer for xcbc and cmac
 2019-03-22 12:38 UTC  (2+ messages)

[PATCH v3 0/3] CAAM job ring driver cleanups
 2019-03-22  6:56 UTC  (5+ messages)
` [PATCH v3 1/3] crypto: caam/jr - Remove spinlock for output job ring
` [PATCH v3 2/3] crypto: caam/jr - Removed redundant vars from job ring private data
` [PATCH v3 3/3] crypto: caam/jr - Remove extra memory barrier during job ring enqueue

crypto: Kernel memory overwrite attempt detected to spans multiple pages
 2019-03-21 17:51 UTC  (5+ messages)

[PATCH v2 0/3] CAAM job ring driver cleanups
 2019-03-21 16:42 UTC  (7+ messages)
` [PATCH v2 1/3] crypto: caam/jr - Remove spinlock for output job ring
` [PATCH v2 2/3] crypto: caam/jr - Removed redundant vars from job ring private data
` [PATCH v2 3/3] crypto: caam/jr - Remove extra memory barrier during job ring enqueue

[PATCH -next] crypto: vmx - Make p8_init and p8_exit static
 2019-03-21 15:11 UTC 

[Bug] Rockchip crypto driver sometimes produces wrong ciphertext
 2019-03-21 13:41 UTC  (3+ messages)
` [Bug] STM32 crc driver failed on selftest 1

KASAN: use-after-free Read in crypto_gcm_init_common
 2019-03-21  9:33 UTC  (2+ messages)

[PATCH 4.14] crypto: arm64/aes-neonbs - fix returning final keystream block
 2019-03-21  5:28 UTC  (2+ messages)

[PATCH v4 0/3] add AES support for Exynos5433
 2019-03-20 19:58 UTC  (3+ messages)
  ` [PATCH v4 1/3] arm64: dts: exynos: add SlimSSS "

[PATCH trivial] crypto: Grammar s/options/option/, s/to/the/
 2019-03-20 13:26 UTC  (2+ messages)

[PATCH v2 0/6] ltp: AF_ALG test helpers and a few regression tests
 2019-03-18 19:10 UTC  (9+ messages)
` [PATCH v2 1/6] lib: add tst_af_alg lib
` [PATCH v2 2/6] crypto/af_alg01: new regression test for hmac nesting bug
` [PATCH v2 3/6] crypto/af_alg02: new regression test for salsa20 empty message bug
` [PATCH v2 4/6] crypto/af_alg03: new regression test for rfc7539 hash alg validation
` [PATCH v2 5/6] crypto/af_alg04: new regression test for vmac race conditions
` [PATCH v2 6/6] crypto/af_alg05: new regression test for skcipher_walk error bug
` [LTP] [PATCH v2 0/6] ltp: AF_ALG test helpers and a few regression tests

[PATCH 0/6] ltp: AF_ALG test helpers and a few regression tests
 2019-03-15 19:49 UTC  (11+ messages)
` [PATCH 1/6] lib: add tst_af_alg lib
  ` [LTP] "
` [PATCH 2/6] crypto/af_alg01: new regression test for hmac nesting bug
  ` [LTP] "
` [PATCH 4/6] crypto/af_alg03: new regression test for rfc7539 hash alg validation
  ` [LTP] "
` [LTP] [PATCH 0/6] ltp: AF_ALG test helpers and a few regression tests

[PATCH 0/3] CAAM job ring driver cleanups
 2019-03-15  8:08 UTC  (3+ messages)
` [PATCH 1/3] crypto: caam/jr - Remove spinlock for output job ring


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).