crypto: sparc - Forbid 2-key 3DES in FIPS mode
This patch forbids the use of 2-key 3DES (K1 == K3) in FIPS mode. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
55902d8514
commit
eee25da50b
|
@ -201,18 +201,15 @@ static int des3_ede_set_key(struct crypto_tfm *tfm, const u8 *key,
|
||||||
unsigned int keylen)
|
unsigned int keylen)
|
||||||
{
|
{
|
||||||
struct des3_ede_sparc64_ctx *dctx = crypto_tfm_ctx(tfm);
|
struct des3_ede_sparc64_ctx *dctx = crypto_tfm_ctx(tfm);
|
||||||
const u32 *K = (const u32 *)key;
|
|
||||||
u32 *flags = &tfm->crt_flags;
|
u32 *flags = &tfm->crt_flags;
|
||||||
u64 k1[DES_EXPKEY_WORDS / 2];
|
u64 k1[DES_EXPKEY_WORDS / 2];
|
||||||
u64 k2[DES_EXPKEY_WORDS / 2];
|
u64 k2[DES_EXPKEY_WORDS / 2];
|
||||||
u64 k3[DES_EXPKEY_WORDS / 2];
|
u64 k3[DES_EXPKEY_WORDS / 2];
|
||||||
|
int err;
|
||||||
|
|
||||||
if (unlikely(!((K[0] ^ K[2]) | (K[1] ^ K[3])) ||
|
err = __des3_verify_key(flags, key);
|
||||||
!((K[2] ^ K[4]) | (K[3] ^ K[5]))) &&
|
if (unlikely(err))
|
||||||
(*flags & CRYPTO_TFM_REQ_FORBID_WEAK_KEYS)) {
|
return err;
|
||||||
*flags |= CRYPTO_TFM_RES_WEAK_KEY;
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
des_sparc64_key_expand((const u32 *)key, k1);
|
des_sparc64_key_expand((const u32 *)key, k1);
|
||||||
key += DES_KEY_SIZE;
|
key += DES_KEY_SIZE;
|
||||||
|
|
Loading…
Reference in New Issue