Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aa1b6bb7 authored by Herbert Xu's avatar Herbert Xu
Browse files

crypto: algboss - Remove reference to nivaead



This patch removes a legacy reference to nivaead which is no longer
used.

Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent e558017b
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -248,13 +248,11 @@ static int cryptomgr_schedule_test(struct crypto_alg *alg)
	type = alg->cra_flags;

	/* This piece of crap needs to disappear into per-type test hooks. */
	if ((!((type ^ CRYPTO_ALG_TYPE_BLKCIPHER) &
	if (!((type ^ CRYPTO_ALG_TYPE_BLKCIPHER) &
	      CRYPTO_ALG_TYPE_BLKCIPHER_MASK) && !(type & CRYPTO_ALG_GENIV) &&
	    ((alg->cra_flags & CRYPTO_ALG_TYPE_MASK) ==
	     CRYPTO_ALG_TYPE_BLKCIPHER ? alg->cra_blkcipher.ivsize :
					  alg->cra_ablkcipher.ivsize)) ||
	    (!((type ^ CRYPTO_ALG_TYPE_AEAD) & CRYPTO_ALG_TYPE_MASK) &&
	     alg->cra_type == &crypto_nivaead_type && alg->cra_aead.ivsize))
					 alg->cra_ablkcipher.ivsize))
		type |= CRYPTO_ALG_TESTED;

	param->type = type;