Linux cryptographic layer development
 help / color / mirror / Atom feed
* [GIT PULL] Crypto Fixes for 7.1
@ 2026-05-02  4:40 Herbert Xu
  2026-05-02 20:27 ` pr-tracker-bot
  0 siblings, 1 reply; 6+ messages in thread
From: Herbert Xu @ 2026-05-02  4:40 UTC (permalink / raw)
  To: Linus Torvalds, David S. Miller, Linux Kernel Mailing List,
	Linux Crypto Mailing List

Hi Linus:

The following changes since commit 3bfbf5f0a99c991769ec562721285df7ab69240b:

  crypto: krb5enc - fix async decrypt skipping hash verification (2026-04-20 16:18:58 +0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6 tags/v7.1-p3

for you to fetch changes up to 5db6ef9847717329f12c5ea8aba7e9f588a980c0:

  crypto: authencesn - reject short ahash digests during instance creation (2026-04-23 13:44:06 +0800)

----------------------------------------------------------------
This push contains the following changes:

- Reject algorithms with authsizes that are too short in authencesn.
----------------------------------------------------------------

Yucheng Lu (1):
      crypto: authencesn - reject short ahash digests during instance creation

 crypto/authencesn.c | 5 +++++
 1 file changed, 5 insertions(+)

Thanks,
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 6+ messages in thread
* [GIT PULL] Crypto Fixes for 7.1
@ 2026-05-15  9:37 Herbert Xu
  2026-05-15 20:10 ` pr-tracker-bot
  0 siblings, 1 reply; 6+ messages in thread
From: Herbert Xu @ 2026-05-15  9:37 UTC (permalink / raw)
  To: Linus Torvalds, David S. Miller, Linux Kernel Mailing List,
	Linux Crypto Mailing List

Hi Linus:

The following changes since commit 7fd2df204f342fc17d1a0bfcd474b24232fb0f32:

  Linux 7.1-rc2 (2026-05-03 14:21:25 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6 tags/v7.1-p4

for you to fetch changes up to d1fa83ecac31093a550534a79a33bc7f4ba8fc10:

  rhashtable: Add bucket_table_free_atomic() helper (2026-05-05 16:12:07 +0800)

----------------------------------------------------------------
This push contains the following changes:

- Fix potential dead-lock in rhashtable when used by xattr.
- Avoid calling kvfree on atomic path in rhashtable.
----------------------------------------------------------------

Mikhail Gavrilov (1):
      rhashtable: drop ht->mutex in rhashtable_free_and_destroy()

Uladzislau Rezki (Sony) (2):
      mm/slab: Add kvfree_atomic() helper
      rhashtable: Add bucket_table_free_atomic() helper

 include/linux/slab.h |  3 +++
 lib/rhashtable.c     | 33 ++++++++++++++++++++++++++-------
 mm/slub.c            | 16 ++++++++++++++++
 3 files changed, 45 insertions(+), 7 deletions(-)

Thanks,
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 6+ messages in thread
* [GIT PULL] Crypto Fixes for 7.1
@ 2026-04-21  8:53 Herbert Xu
  2026-04-21 16:25 ` pr-tracker-bot
  0 siblings, 1 reply; 6+ messages in thread
From: Herbert Xu @ 2026-04-21  8:53 UTC (permalink / raw)
  To: Linus Torvalds, David S. Miller, Linux Kernel Mailing List,
	Linux Crypto Mailing List

Hi Linus:

The following changes since commit aec2f682d47c54ef434b2d440992626d80b1ebdc:

  Merge tag 'v7.1-p1' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6 (2026-04-15 15:22:26 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6 tags/v7.1-p2

for you to fetch changes up to 3bfbf5f0a99c991769ec562721285df7ab69240b:

  crypto: krb5enc - fix async decrypt skipping hash verification (2026-04-20 16:18:58 +0800)

----------------------------------------------------------------
This push contains the following changes:

- Fix IPsec ESN regression in authencesn.
- Fix hmac setkey failure in eip93.
- Guard against IV changing in algif_aead.
- Fix async completion handling in krb5enc.
- Fix fallback async completion in acomp.
- Fix handling of MAY_BACKLOG requests in pcrypt.
- Fix issues with firmware-returned values in ccp.
----------------------------------------------------------------

Aleksander Jan Bajkowski (1):
      crypto: eip93 - fix hmac setkey algo selection

Douya Le (1):
      crypto: algif_aead - snapshot IV for async AEAD requests

Dudu Lu (1):
      crypto: krb5enc - fix async decrypt skipping hash verification

Giovanni Cabiddu (1):
      crypto: acomp - fix wrong pointer stored by acomp_save_req()

Herbert Xu (2):
      crypto: authencesn - Fix src offset when decrypting in-place
      crypto: pcrypt - Fix handling of MAY_BACKLOG requests

Paul Moses (1):
      crypto: ccp - copy IV using skcipher ivsize

Sean Christopherson (3):
      crypto: ccp: Don't attempt to copy CSR to userspace if PSP command failed
      crypto: ccp: Don't attempt to copy PDH cert to userspace if PSP command failed
      crypto: ccp: Don't attempt to copy ID to userspace if PSP command failed

T Pratham (1):
      crypto: sa2ul - Fix AEAD fallback algorithm names

 crypto/acompress.c                                |  8 ++--
 crypto/algif_aead.c                               | 10 ++++-
 crypto/authencesn.c                               |  6 ++-
 crypto/krb5enc.c                                  | 52 ++++++++++++++---------
 crypto/pcrypt.c                                   |  7 ++-
 drivers/crypto/ccp/ccp-crypto-aes.c               |  7 ++-
 drivers/crypto/ccp/sev-dev.c                      | 19 ++++++++-
 drivers/crypto/inside-secure/eip93/eip93-common.c |  2 +-
 drivers/crypto/sa2ul.c                            |  4 +-
 9 files changed, 76 insertions(+), 39 deletions(-)

Thanks,
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2026-05-15 20:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-02  4:40 [GIT PULL] Crypto Fixes for 7.1 Herbert Xu
2026-05-02 20:27 ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2026-05-15  9:37 Herbert Xu
2026-05-15 20:10 ` pr-tracker-bot
2026-04-21  8:53 Herbert Xu
2026-04-21 16:25 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox