Merge tag 'libcrypto-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
authorLinus Torvalds <torvalds@linux-foundation.org>
Fri, 5 Sep 2025 14:57:07 +0000 (07:57 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 5 Sep 2025 14:57:07 +0000 (07:57 -0700)
commit01c93aa01c75e7a43f7f53229bcbecffac75eb84
tree2dc4e6d160a92d64feef49de3da17b577d6df598
parent4e47e46718c466d90f7a452579f9ed1a7c250553
parentcdb03b6d1896c2d23f9c47dc779edba0a9241115
Merge tag 'libcrypto-fixes-for-linus' of git://git./linux/kernel/git/ebiggers/linux

Pull crypto library fixes from Eric Biggers:
 "Fix a regression caused by my commits that reimplemented the sha1,
  sha256, and sha512 crypto_shash algorithms on top of the library API.
  Specifically, the export_core and import_core methods stopped being
  supported, which broke some hardware offload drivers (such as qat)
  that recently started depending on these for fallback functionality.

  Later I'd like to make these drivers just use the library API for
  their fallback. Then these methods won't be needed anymore. But for
  now, this fixes the regression for 6.17"

* tag 'libcrypto-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux:
  crypto: sha512 - Implement export_core() and import_core()
  crypto: sha256 - Implement export_core() and import_core()
  crypto: sha1 - Implement export_core() and import_core()