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

Configure Feed

Select the types of activity you want to include in your feed.

crypto: testmgr - Enable phmac selftest

Add phmac selftest invocation to the crypto testmanager.

Signed-off-by: Harald Freudenberger <freude@linux.ibm.com>
Acked-by: Holger Dengler <dengler@linux.ibm.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Harald Freudenberger and committed by
Herbert Xu
a71d3e1b d48b2f5e

+30
+30
crypto/testmgr.c
··· 5310 5310 .cipher = __VECS(fcrypt_pcbc_tv_template) 5311 5311 } 5312 5312 }, { 5313 + #if IS_ENABLED(CONFIG_CRYPTO_PHMAC_S390) 5314 + .alg = "phmac(sha224)", 5315 + .test = alg_test_hash, 5316 + .fips_allowed = 1, 5317 + .suite = { 5318 + .hash = __VECS(hmac_sha224_tv_template) 5319 + } 5320 + }, { 5321 + .alg = "phmac(sha256)", 5322 + .test = alg_test_hash, 5323 + .fips_allowed = 1, 5324 + .suite = { 5325 + .hash = __VECS(hmac_sha256_tv_template) 5326 + } 5327 + }, { 5328 + .alg = "phmac(sha384)", 5329 + .test = alg_test_hash, 5330 + .fips_allowed = 1, 5331 + .suite = { 5332 + .hash = __VECS(hmac_sha384_tv_template) 5333 + } 5334 + }, { 5335 + .alg = "phmac(sha512)", 5336 + .test = alg_test_hash, 5337 + .fips_allowed = 1, 5338 + .suite = { 5339 + .hash = __VECS(hmac_sha512_tv_template) 5340 + } 5341 + }, { 5342 + #endif 5313 5343 .alg = "pkcs1(rsa,none)", 5314 5344 .test = alg_test_sig, 5315 5345 .suite = {