Am Freitag, 28. Januar 2022, 05:46:20 CET schrieb Herbert Xu: Hi Herbert, > On Fri, Jan 07, 2022 at 08:25:24PM +0100, Stephan Müller wrote: > > diff --git a/crypto/testmgr.h b/crypto/testmgr.h > > index a253d66ba1c1..1c39d294b9ba 100644 > > --- a/crypto/testmgr.h > > +++ b/crypto/testmgr.h > > @@ -5706,6 +5706,7 @@ static const struct hash_testvec > > hmac_sha1_tv_template[] = {> > > .digest = "\xb6\x17\x31\x86\x55\x05\x72\x64" > > > > "\xe2\x8b\xc0\xb6\xfb\x37\x8c\x8e\xf1" > > "\x46\xbe", > > > > +#ifndef CONFIG_CRYPTO_FIPS > > > > }, { > > > > .key = "Jefe", > > .ksize = 4, > > Please don't use ifdefs, you can instead add a fips_skip setting > just like we do for cipher test vectors. Thank you for the hint, will do. > > Thanks, Ciao Stephan