···1414#include <linux/crypto.h>1515#include <crypto/algapi.h>1616#include <crypto/scatterwalk.h>1717-#include <crypto/des.h>1717+#include <crypto/internal/des.h>18181919#include "ccp-crypto.h"2020···3939 struct ccp_ctx *ctx = crypto_tfm_ctx(crypto_ablkcipher_tfm(tfm));4040 struct ccp_crypto_ablkcipher_alg *alg =4141 ccp_crypto_ablkcipher_alg(crypto_ablkcipher_tfm(tfm));4242- u32 *flags = &tfm->base.crt_flags;4342 int err;44434545- err = __des3_verify_key(flags, key);4646- if (unlikely(err))4444+ err = verify_ablkcipher_des3_key(tfm, key);4545+ if (err)4746 return err;48474948 /* It's not clear that there is any support for a keysize of 112.