linux-crypto.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Harald Freudenberger <freude@linux.ibm.com>
To: Herbert Xu <herbert@gondor.apana.org.au>
Cc: Linux Crypto Mailing List <linux-crypto@vger.kernel.org>,
	Holger Dengler <dengler@linux.ibm.com>,
	Ingo Franzki <ifranzki@linux.ibm.com>
Subject: Regression: hash - Add HASH_REQUEST_ON_STACK causes asynch hashes to fail
Date: Tue, 03 Jun 2025 15:49:16 +0200	[thread overview]
Message-ID: <74ae23193f7c5a295c0bfee2604b478f@linux.ibm.com> (raw)
In-Reply-To: <c9e5c4beaad9c5876dc0f4ab15e16f020b992d9d.1746162259.git.herbert@gondor.apana.org.au>

[-- Attachment #1: Type: text/plain, Size: 2019 bytes --]

Hello Herbert

I am facing a weird issue with my phmac implementation since kernel 5.15 
has
been released. The algorithm registers fine but obviously it is not 
self-tested
and thus you can't access it via AF_ALG or with an in-kernel customer.

With some tricks I was able to bisec this down to commit
04bfa4c7d511 ("crypto: hash - Add HASH_REQUEST_ON_STACK").
In detail it is this code in crypto/ahash.c which is the culprit:

static int crypto_ahash_init_tfm(struct crypto_tfm *tfm)
{
	struct crypto_ahash *hash = __crypto_ahash_cast(tfm);
	struct ahash_alg *alg = crypto_ahash_alg(hash);
	struct crypto_ahash *fb = NULL;
	int err;

	crypto_ahash_set_statesize(hash, alg->halg.statesize);
	crypto_ahash_set_reqsize(hash, crypto_tfm_alg_reqsize(tfm));

	hash->fb = hash;

	if (tfm->__crt_alg->cra_type == &crypto_shash_type)
		return crypto_init_ahash_using_shash(tfm);

	if (ahash_is_async(hash)) {
		fb = crypto_alloc_ahash(crypto_ahash_alg_name(hash),
					0, CRYPTO_ALG_ASYNC);         <--- always failing
		if (IS_ERR(fb))
			return PTR_ERR(fb);

		hash->fb = fb;
	}

	ahash_set_needkey(hash, alg);

	tfm->exit = crypto_ahash_exit_tfm;

The crypto_alloc_ahash() fails always with -2 = -ENOENT and
my suggestion is this happens because this is when the selftest
is about to run and the alloc flags here may miss some kind of
larval or untested or similar flag.

Note that this may happen not only with my still not integrated phmac
but with all asynch hashes and as far as I can see there is some
similar code in acompress.c.

I tried to go into more details but on the path down there are so
many modifications done on the flags and mask parameters and I gave
up somewhere on the path down. This all comes down then to calling
__crypto_alg_lookup() but this function then - maybe because of
wrong flag/type/mask parameter - can't match the algorithm.
I've instrumented the code with some pr_debug() and the result
is attached to this email - hopefully this gives you some hints.

Thanks for your investigation



[-- Attachment #2: crypto_alg_lookup.txt --]
[-- Type: text/plain, Size: 71825 bytes --]

Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4956] s390_phmac_init: phmac_s390: phmac(sha224) registered
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: > name=phmac_s390_sha224 type=0x0000028f mask=0x0000240e
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055316b9400: phmac_s390_sha256,phmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000400 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055316b9a60: phmac_s390_sha256,phmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055316bd000: phmac_s390_sha224,phmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000400 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055316b8e60: phmac_s390_sha224,phmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: < returning alg=00000055316b8e60
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] crypto_ahash_init_tfm: xxx >
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: > name=phmac(sha224) type=0x0000040f mask=0x0000248e
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055316b9400: phmac_s390_sha256,phmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055316b9a60: phmac_s390_sha256,phmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000028f ^ type) & mask) = 0x00000480 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055316bd000: phmac_s390_sha224,phmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055316b8e60: phmac_s390_sha224,phmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000028f ^ type) & mask) = 0x00000480 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576809f690: hmac_s390_sha512,hmac(sha512)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576809f498: hmac_s390_sha384,hmac(sha384)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576809f2a0: hmac_s390_sha256,hmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576809f0a8: hmac_s390_sha224,hmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000005535682860: xts(ecb(aes-generic)),xts(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000c05 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000005535681c48: cbc(ecb(aes-generic)),cbc(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000c04 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768173088: ghash-s390,ghash
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055404d9048: ecb(aes-generic),ecb(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000c04 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000005544ebcc60: ctr(aes-generic),ctr(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000c05 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4956] s390_phmac_init: phmac_s390: phmac(sha256) registered
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768153ba0: gcm-aes-s390,gcm(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: > name=phmac_s390_sha256 type=0x0000028f mask=0x0000240e
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000403 ^ type) & mask) = 0x0000000c -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055316b9400: phmac_s390_sha256,phmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157681539d8: ctr-aes-s390,ctr(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000400 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157681537f8: xts-aes-s390,xts(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055316b9a60: phmac_s390_sha256,phmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: < returning alg=00000055316b9a60
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768153618: full-xts-aes-s390,xts(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] crypto_ahash_init_tfm: xxx >
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768153438: cbc-aes-s390,cbc(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768153258: ecb-aes-s390,ecb(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768153078: aes-s390,aes
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000501 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768145ce8: ctr-des3_ede-s390,ctr(des3_ede)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768145b08: ctr-des-s390,ctr(des)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768145928: cbc-des3_ede-s390,cbc(des3_ede)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768145748: ecb-des3_ede-s390,ecb(des3_ede)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768145568: des3_ede-s390,des3_ede
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157681453e0: cbc-des-s390,cbc(des)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768145200: ecb-des-s390,ecb(des)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768145020: des-s390,des
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576812e258: sha3-384-s390,sha3-384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576812e068: sha3-512-s390,sha3-512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768122068: sha3-224-s390,sha3-224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768122258: sha3-256-s390,sha3-256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768114258: sha384-s390,sha384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768114068: sha512-s390,sha512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576810a068: sha224-s390,sha224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576810a258: sha256-s390,sha256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157680fe068: sha1-s390,sha1
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055155e4050: pkcs1(rsa-generic,sha256),pkcs1(rsa,sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000c07 ^ type) & mask) = 0x00000008 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95447f8: jitterentropy_rng,jitterentropy_rng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9544ab8: ghash-generic,ghash
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157ea958b60: drbg_nopr_hmac_sha512,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157ea9589b8: drbg_nopr_hmac_sha256,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157ea958810: drbg_nopr_hmac_sha384,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157ea958668: drbg_pr_hmac_sha512,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157ea9584c0: drbg_pr_hmac_sha256,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157ea958318: drbg_pr_hmac_sha384,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95445b0: xxhash64-generic,xxhash64
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95443c0: lzo-rle-scomp,lzo-rle
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0004040b ^ type) & mask) = 0x00000004 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9544180: lzo-scomp,lzo
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0004040b ^ type) & mask) = 0x00000004 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9543f40: crc32c-s390,crc32c
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9543d50: crc32c-generic,crc32c
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9543b60: poly1305-generic,poly1305
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9543970: xchacha12-s390,xchacha12
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9543790: xchacha20-s390,xchacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95435b0: chacha20-s390,chacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95433d0: xchacha12-generic,xchacha12
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95431f0: xchacha20-generic,xchacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9543010: chacha20-generic,chacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9542e30: aes-generic,aes
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95422a8: blake2b-512-generic,blake2b-512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95420b8: blake2b-384-generic,blake2b-384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9541ec8: blake2b-256-generic,blake2b-256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9541cd8: blake2b-160-generic,blake2b-160
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9541ae8: sha3-512-generic,sha3-512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95418f8: sha3-384-generic,sha3-384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9541708: sha3-256-generic,sha3-256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9541518: sha3-224-generic,sha3-224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9541328: sha384-generic,sha384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9541138: sha512-generic,sha512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9540f48: sha224-generic,sha224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9540d58: sha256-generic,sha256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9540b68: sha1-generic,sha1
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9540978: md5-generic,md5
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9540788: ecb-cipher_null,ecb(cipher_null)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95405a8: digest_null-generic,digest_null
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95403b8: cipher_null-generic,cipher_null
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e953fde0: rsa-generic,rsa
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000406 ^ type) & mask) = 0x00000008 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: < returning alg=0000000000000000
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: > name=phmac(sha224) type=0x0000000f mask=0x0000208e
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055316b9400: phmac_s390_sha256,phmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055316b9a60: phmac_s390_sha256,phmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000028f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055316bd000: phmac_s390_sha224,phmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055316b8e60: phmac_s390_sha224,phmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000028f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576809f690: hmac_s390_sha512,hmac(sha512)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576809f498: hmac_s390_sha384,hmac(sha384)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576809f2a0: hmac_s390_sha256,hmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576809f0a8: hmac_s390_sha224,hmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000005535682860: xts(ecb(aes-generic)),xts(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000c05 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000005535681c48: cbc(ecb(aes-generic)),cbc(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000c04 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768173088: ghash-s390,ghash
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055404d9048: ecb(aes-generic),ecb(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000c04 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000005544ebcc60: ctr(aes-generic),ctr(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000c05 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768153ba0: gcm-aes-s390,gcm(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000403 ^ type) & mask) = 0x0000000c -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157681539d8: ctr-aes-s390,ctr(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157681537f8: xts-aes-s390,xts(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768153618: full-xts-aes-s390,xts(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768153438: cbc-aes-s390,cbc(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768153258: ecb-aes-s390,ecb(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768153078: aes-s390,aes
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000501 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768145ce8: ctr-des3_ede-s390,ctr(des3_ede)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768145b08: ctr-des-s390,ctr(des)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768145928: cbc-des3_ede-s390,cbc(des3_ede)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768145748: ecb-des3_ede-s390,ecb(des3_ede)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768145568: des3_ede-s390,des3_ede
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157681453e0: cbc-des-s390,cbc(des)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768145200: ecb-des-s390,ecb(des)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768145020: des-s390,des
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576812e258: sha3-384-s390,sha3-384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576812e068: sha3-512-s390,sha3-512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768122068: sha3-224-s390,sha3-224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768122258: sha3-256-s390,sha3-256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768114258: sha384-s390,sha384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 0000015768114068: sha512-s390,sha512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576810a068: sha224-s390,sha224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 000001576810a258: sha256-s390,sha256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157680fe068: sha1-s390,sha1
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000055155e4050: pkcs1(rsa-generic,sha256),pkcs1(rsa,sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000c07 ^ type) & mask) = 0x00000008 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95447f8: jitterentropy_rng,jitterentropy_rng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9544ab8: ghash-generic,ghash
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157ea958b60: drbg_nopr_hmac_sha512,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157ea9589b8: drbg_nopr_hmac_sha256,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157ea958810: drbg_nopr_hmac_sha384,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157ea958668: drbg_pr_hmac_sha512,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157ea9584c0: drbg_pr_hmac_sha256,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157ea958318: drbg_pr_hmac_sha384,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95445b0: xxhash64-generic,xxhash64
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95443c0: lzo-rle-scomp,lzo-rle
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0004040b ^ type) & mask) = 0x00000004 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9544180: lzo-scomp,lzo
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x0004040b ^ type) & mask) = 0x00000004 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9543f40: crc32c-s390,crc32c
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9543d50: crc32c-generic,crc32c
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9543b60: poly1305-generic,poly1305
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9543970: xchacha12-s390,xchacha12
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9543790: xchacha20-s390,xchacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95435b0: chacha20-s390,chacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95433d0: xchacha12-generic,xchacha12
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95431f0: xchacha20-generic,xchacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9543010: chacha20-generic,chacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9542e30: aes-generic,aes
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95422a8: blake2b-512-generic,blake2b-512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95420b8: blake2b-384-generic,blake2b-384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9541ec8: blake2b-256-generic,blake2b-256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9541cd8: blake2b-160-generic,blake2b-160
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9541ae8: sha3-512-generic,sha3-512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95418f8: sha3-384-generic,sha3-384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9541708: sha3-256-generic,sha3-256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9541518: sha3-224-generic,sha3-224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9541328: sha384-generic,sha384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9541138: sha512-generic,sha512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9540f48: sha224-generic,sha224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9540d58: sha256-generic,sha256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9540b68: sha1-generic,sha1
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9540978: md5-generic,md5
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e9540788: ecb-cipher_null,ecb(cipher_null)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95405a8: digest_null-generic,digest_null
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e95403b8: cipher_null-generic,cipher_null
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | check against 00000157e953fde0: rsa-generic,rsa
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: | ((cra_flags=0x00000406 ^ type) & mask) = 0x00000008 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4958] __crypto_alg_lookup: < returning alg=0000000000000000
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: > name=phmac(sha256) type=0x0000040f mask=0x0000248e
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055316b8800: phmac_s390_sha384,phmac(sha384)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055316bf460: phmac_s390_sha384,phmac(sha384)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000028f ^ type) & mask) = 0x00000480 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055316b9400: phmac_s390_sha256,phmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055316b9a60: phmac_s390_sha256,phmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000028f ^ type) & mask) = 0x00000480 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055316bd000: phmac_s390_sha224,phmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055316b8e60: phmac_s390_sha224,phmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000028f ^ type) & mask) = 0x00000480 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576809f690: hmac_s390_sha512,hmac(sha512)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576809f498: hmac_s390_sha384,hmac(sha384)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576809f2a0: hmac_s390_sha256,hmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576809f0a8: hmac_s390_sha224,hmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000005535682860: xts(ecb(aes-generic)),xts(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000c05 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000005535681c48: cbc(ecb(aes-generic)),cbc(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000c04 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768173088: ghash-s390,ghash
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055404d9048: ecb(aes-generic),ecb(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000c04 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000005544ebcc60: ctr(aes-generic),ctr(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000c05 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768153ba0: gcm-aes-s390,gcm(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000403 ^ type) & mask) = 0x0000000c -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157681539d8: ctr-aes-s390,ctr(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157681537f8: xts-aes-s390,xts(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768153618: full-xts-aes-s390,xts(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768153438: cbc-aes-s390,cbc(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768153258: ecb-aes-s390,ecb(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4956] s390_phmac_init: phmac_s390: phmac(sha384) registered
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768153078: aes-s390,aes
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000501 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: > name=phmac_s390_sha384 type=0x0000028f mask=0x0000240e
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 00000055316b8800: phmac_s390_sha384,phmac(sha384)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768145ce8: ctr-des3_ede-s390,ctr(des3_ede)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000400 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 00000055316bf460: phmac_s390_sha384,phmac(sha384)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: < returning alg=00000055316bf460
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] crypto_ahash_init_tfm: xxx >
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768145b08: ctr-des-s390,ctr(des)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768145928: cbc-des3_ede-s390,cbc(des3_ede)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768145748: ecb-des3_ede-s390,ecb(des3_ede)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768145568: des3_ede-s390,des3_ede
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157681453e0: cbc-des-s390,cbc(des)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768145200: ecb-des-s390,ecb(des)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768145020: des-s390,des
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576812e258: sha3-384-s390,sha3-384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576812e068: sha3-512-s390,sha3-512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768122068: sha3-224-s390,sha3-224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768122258: sha3-256-s390,sha3-256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768114258: sha384-s390,sha384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768114068: sha512-s390,sha512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576810a068: sha224-s390,sha224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576810a258: sha256-s390,sha256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157680fe068: sha1-s390,sha1
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055155e4050: pkcs1(rsa-generic,sha256),pkcs1(rsa,sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000c07 ^ type) & mask) = 0x00000008 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95447f8: jitterentropy_rng,jitterentropy_rng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9544ab8: ghash-generic,ghash
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157ea958b60: drbg_nopr_hmac_sha512,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157ea9589b8: drbg_nopr_hmac_sha256,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157ea958810: drbg_nopr_hmac_sha384,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157ea958668: drbg_pr_hmac_sha512,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157ea9584c0: drbg_pr_hmac_sha256,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157ea958318: drbg_pr_hmac_sha384,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95445b0: xxhash64-generic,xxhash64
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95443c0: lzo-rle-scomp,lzo-rle
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0004040b ^ type) & mask) = 0x00000004 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9544180: lzo-scomp,lzo
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0004040b ^ type) & mask) = 0x00000004 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9543f40: crc32c-s390,crc32c
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9543d50: crc32c-generic,crc32c
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9543b60: poly1305-generic,poly1305
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9543970: xchacha12-s390,xchacha12
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9543790: xchacha20-s390,xchacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95435b0: chacha20-s390,chacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95433d0: xchacha12-generic,xchacha12
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95431f0: xchacha20-generic,xchacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9543010: chacha20-generic,chacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9542e30: aes-generic,aes
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95422a8: blake2b-512-generic,blake2b-512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95420b8: blake2b-384-generic,blake2b-384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9541ec8: blake2b-256-generic,blake2b-256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9541cd8: blake2b-160-generic,blake2b-160
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9541ae8: sha3-512-generic,sha3-512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95418f8: sha3-384-generic,sha3-384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9541708: sha3-256-generic,sha3-256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9541518: sha3-224-generic,sha3-224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9541328: sha384-generic,sha384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9541138: sha512-generic,sha512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9540f48: sha224-generic,sha224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9540d58: sha256-generic,sha256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9540b68: sha1-generic,sha1
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9540978: md5-generic,md5
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9540788: ecb-cipher_null,ecb(cipher_null)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95405a8: digest_null-generic,digest_null
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95403b8: cipher_null-generic,cipher_null
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e953fde0: rsa-generic,rsa
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000406 ^ type) & mask) = 0x00000008 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: < returning alg=0000000000000000
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: > name=phmac(sha256) type=0x0000000f mask=0x0000208e
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055316b8800: phmac_s390_sha384,phmac(sha384)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055316bf460: phmac_s390_sha384,phmac(sha384)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000028f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055316b9400: phmac_s390_sha256,phmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055316b9a60: phmac_s390_sha256,phmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000028f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055316bd000: phmac_s390_sha224,phmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055316b8e60: phmac_s390_sha224,phmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000028f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576809f690: hmac_s390_sha512,hmac(sha512)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576809f498: hmac_s390_sha384,hmac(sha384)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576809f2a0: hmac_s390_sha256,hmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576809f0a8: hmac_s390_sha224,hmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000005535682860: xts(ecb(aes-generic)),xts(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000c05 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000005535681c48: cbc(ecb(aes-generic)),cbc(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000c04 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768173088: ghash-s390,ghash
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055404d9048: ecb(aes-generic),ecb(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000c04 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000005544ebcc60: ctr(aes-generic),ctr(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000c05 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768153ba0: gcm-aes-s390,gcm(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000403 ^ type) & mask) = 0x0000000c -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157681539d8: ctr-aes-s390,ctr(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157681537f8: xts-aes-s390,xts(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768153618: full-xts-aes-s390,xts(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768153438: cbc-aes-s390,cbc(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768153258: ecb-aes-s390,ecb(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000505 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768153078: aes-s390,aes
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000501 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768145ce8: ctr-des3_ede-s390,ctr(des3_ede)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768145b08: ctr-des-s390,ctr(des)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768145928: cbc-des3_ede-s390,cbc(des3_ede)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768145748: ecb-des3_ede-s390,ecb(des3_ede)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768145568: des3_ede-s390,des3_ede
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157681453e0: cbc-des-s390,cbc(des)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768145200: ecb-des-s390,ecb(des)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768145020: des-s390,des
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576812e258: sha3-384-s390,sha3-384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576812e068: sha3-512-s390,sha3-512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768122068: sha3-224-s390,sha3-224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768122258: sha3-256-s390,sha3-256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768114258: sha384-s390,sha384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 0000015768114068: sha512-s390,sha512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576810a068: sha224-s390,sha224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 000001576810a258: sha256-s390,sha256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157680fe068: sha1-s390,sha1
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000055155e4050: pkcs1(rsa-generic,sha256),pkcs1(rsa,sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000c07 ^ type) & mask) = 0x00000008 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95447f8: jitterentropy_rng,jitterentropy_rng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9544ab8: ghash-generic,ghash
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157ea958b60: drbg_nopr_hmac_sha512,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157ea9589b8: drbg_nopr_hmac_sha256,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157ea958810: drbg_nopr_hmac_sha384,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157ea958668: drbg_pr_hmac_sha512,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157ea9584c0: drbg_pr_hmac_sha256,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157ea958318: drbg_pr_hmac_sha384,stdrng
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0000040c ^ type) & mask) = 0x00000002 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95445b0: xxhash64-generic,xxhash64
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95443c0: lzo-rle-scomp,lzo-rle
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0004040b ^ type) & mask) = 0x00000004 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9544180: lzo-scomp,lzo
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x0004040b ^ type) & mask) = 0x00000004 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9543f40: crc32c-s390,crc32c
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9543d50: crc32c-generic,crc32c
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9543b60: poly1305-generic,poly1305
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9543970: xchacha12-s390,xchacha12
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9543790: xchacha20-s390,xchacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95435b0: chacha20-s390,chacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95433d0: xchacha12-generic,xchacha12
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95431f0: xchacha20-generic,xchacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9543010: chacha20-generic,chacha20
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9542e30: aes-generic,aes
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95422a8: blake2b-512-generic,blake2b-512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95420b8: blake2b-384-generic,blake2b-384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9541ec8: blake2b-256-generic,blake2b-256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9541cd8: blake2b-160-generic,blake2b-160
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9541ae8: sha3-512-generic,sha3-512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95418f8: sha3-384-generic,sha3-384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9541708: sha3-256-generic,sha3-256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9541518: sha3-224-generic,sha3-224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9541328: sha384-generic,sha384
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9541138: sha512-generic,sha512
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9540f48: sha224-generic,sha224
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9540d58: sha256-generic,sha256
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9540b68: sha1-generic,sha1
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9540978: md5-generic,md5
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e9540788: ecb-cipher_null,ecb(cipher_null)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000405 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95405a8: digest_null-generic,digest_null
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e95403b8: cipher_null-generic,cipher_null
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000401 ^ type) & mask) = 0x0000000e -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | check against 00000157e953fde0: rsa-generic,rsa
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: | ((cra_flags=0x00000406 ^ type) & mask) = 0x00000008 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4959] __crypto_alg_lookup: < returning alg=0000000000000000
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: > name=phmac(sha384) type=0x0000040f mask=0x0000248e
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 000000553905a000: phmac_s390_sha512,phmac(sha512)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 000000553905e860: phmac_s390_sha512,phmac(sha512)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | ((cra_flags=0x0000028f ^ type) & mask) = 0x00000480 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 00000055316b8800: phmac_s390_sha384,phmac(sha384)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 00000055316bf460: phmac_s390_sha384,phmac(sha384)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | ((cra_flags=0x0000028f ^ type) & mask) = 0x00000480 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 00000055316b9400: phmac_s390_sha256,phmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 00000055316b9a60: phmac_s390_sha256,phmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | ((cra_flags=0x0000028f ^ type) & mask) = 0x00000480 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 00000055316bd000: phmac_s390_sha224,phmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | ((cra_flags=0x0000069f ^ type) & mask) = 0x00000080 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 00000055316b8e60: phmac_s390_sha224,phmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | ((cra_flags=0x0000028f ^ type) & mask) = 0x00000480 -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 000001576809f690: hmac_s390_sha512,hmac(sha512)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 000001576809f498: hmac_s390_sha384,hmac(sha384)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 000001576809f2a0: hmac_s390_sha256,hmac(sha256)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 000001576809f0a8: hmac_s390_sha224,hmac(sha224)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 0000005535682860: xts(ecb(aes-generic)),xts(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | ((cra_flags=0x00000c05 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 0000005535681c48: cbc(ecb(aes-generic)),cbc(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | ((cra_flags=0x00000c04 ^ type) & mask) = 0x0000000a -> continue
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 0000015768173088: ghash-s390,ghash
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | check against 00000055404d9048: ecb(aes-generic),ecb(aes)
Jun 03 15:37:57 b83lp71.lnxne.boe kernel: [4961] __crypto_alg_lookup: | ((cra_flags=0x00000c04 ^ type) & mask) = 0x0000000a -> continue

  parent reply	other threads:[~2025-06-03 13:49 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-02  5:30 [v2 PATCH 0/9] crypto: sha256 - Use partial block API Herbert Xu
2025-05-02  5:30 ` [v2 PATCH 1/9] crypto: lib/sha256 - Add helpers for block-based shash Herbert Xu
2025-06-03  4:56   ` [v2 PATCH 1/9] crypto: lib/sha256 - Add helpers for block-based shash (RT build failure) Guenter Roeck
2025-06-03  4:59     ` Herbert Xu
2025-06-03  5:44       ` Guenter Roeck
2025-06-03 13:49   ` Harald Freudenberger [this message]
2025-06-04  9:54     ` [PATCH] crypto: ahash - Add support for drivers with no fallback Herbert Xu
2025-06-05 13:29       ` Harald Freudenberger
2025-06-11  3:07         ` Herbert Xu
2025-05-02  5:30 ` [v2 PATCH 2/9] crypto: sha256 - Use the partial block API for generic Herbert Xu
2025-05-02  5:30 ` [v2 PATCH 3/9] crypto: arch/sha256 - Export block functions as GPL only Herbert Xu
2025-05-02  5:31 ` [v2 PATCH 4/9] crypto: arm/sha256 - Add simd block function Herbert Xu
2025-05-02  5:31 ` [v2 PATCH 5/9] crypto: arm64/sha256 " Herbert Xu
2025-05-02  5:31 ` [v2 PATCH 6/9] crypto: riscv/sha256 " Herbert Xu
2025-05-02  5:31 ` [v2 PATCH 7/9] crypto: x86/sha256 " Herbert Xu
2025-05-02  5:31 ` [v2 PATCH 8/9] crypto: lib/sha256 - Use generic block helper Herbert Xu
2025-05-02  5:31 ` [v2 PATCH 9/9] crypto: sha256 - Use the partial block API Herbert Xu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=74ae23193f7c5a295c0bfee2604b478f@linux.ibm.com \
    --to=freude@linux.ibm.com \
    --cc=dengler@linux.ibm.com \
    --cc=herbert@gondor.apana.org.au \
    --cc=ifranzki@linux.ibm.com \
    --cc=linux-crypto@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).