Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'v6.17-p2' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6

Pull crypto fix from Herbert Xu:
"Fix a regression that broke hmac(sha3-224-s390)"

* tag 'v6.17-p2' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
crypto: hash - Increase HASH_MAX_DESCSIZE for hmac(sha3-224-s390)

+1 -1
+1 -1
include/crypto/hash.h
··· 184 184 * Worst case is hmac(sha3-224-s390). Its context is a nested 'shash_desc' 185 185 * containing a 'struct s390_sha_ctx'. 186 186 */ 187 - #define HASH_MAX_DESCSIZE (sizeof(struct shash_desc) + 360) 187 + #define HASH_MAX_DESCSIZE (sizeof(struct shash_desc) + 361) 188 188 #define MAX_SYNC_HASH_REQSIZE (sizeof(struct ahash_request) + \ 189 189 HASH_MAX_DESCSIZE) 190 190