Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 75889
b: refs/heads/master
c: c3041f9
h: refs/heads/master
i:
  75887: 27ac0ec
v: v3
  • Loading branch information
Evgeniy Polyakov authored and Herbert Xu committed Jan 10, 2008
1 parent a725b2a commit 65689df
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 16d004a2eda7be2c6a2de63eca2ad3c6b57307b3
refs/heads/master: c3041f9c93e31159f4e321abea7c1549d271e6a7
9 changes: 5 additions & 4 deletions trunk/crypto/des_generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ static const u32 S8[64] = {
* Choice 1 has operated on the key.
*
*/
static unsigned long ekey(u32 *pe, const u8 *k)
unsigned long des_ekey(u32 *pe, const u8 *k)
{
/* K&R: long is at least 32 bits */
unsigned long a, b, c, d, w;
Expand Down Expand Up @@ -703,6 +703,7 @@ static unsigned long ekey(u32 *pe, const u8 *k)
/* Zero if weak key */
return w;
}
EXPORT_SYMBOL_GPL(des_ekey);

/*
* Decryption key expansion
Expand Down Expand Up @@ -786,7 +787,7 @@ static int des_setkey(struct crypto_tfm *tfm, const u8 *key,
int ret;

/* Expand to tmp */
ret = ekey(tmp, key);
ret = des_ekey(tmp, key);

if (unlikely(ret == 0) && (*flags & CRYPTO_TFM_REQ_WEAK_KEY)) {
*flags |= CRYPTO_TFM_RES_WEAK_KEY;
Expand Down Expand Up @@ -873,9 +874,9 @@ static int des3_ede_setkey(struct crypto_tfm *tfm, const u8 *key,
return -EINVAL;
}

ekey(expkey, key); expkey += DES_EXPKEY_WORDS; key += DES_KEY_SIZE;
des_ekey(expkey, key); expkey += DES_EXPKEY_WORDS; key += DES_KEY_SIZE;
dkey(expkey, key); expkey += DES_EXPKEY_WORDS; key += DES_KEY_SIZE;
ekey(expkey, key);
des_ekey(expkey, key);

return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/crypto/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ config ZCRYPT_MONOLITHIC

config CRYPTO_DEV_HIFN_795X
tristate "Driver HIFN 795x crypto accelerator chips"
select CRYPTO_DES
select CRYPTO_ALGAPI
select CRYPTO_ABLKCIPHER
select CRYPTO_BLKCIPHER
help
This option allows you to have support for HIFN 795x crypto adapters.

Expand Down
11 changes: 11 additions & 0 deletions trunk/drivers/crypto/hifn_795x.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include <linux/crypto.h>

#include <crypto/algapi.h>
#include <crypto/des.h>

#include <asm/kmap_types.h>

Expand Down Expand Up @@ -1924,6 +1925,16 @@ static int hifn_setkey(struct crypto_ablkcipher *cipher, const u8 *key,
return -1;
}

if (len == HIFN_DES_KEY_LENGTH) {
u32 tmp[DES_EXPKEY_WORDS];
int ret = des_ekey(tmp, key);

if (unlikely(ret == 0) && (tfm->crt_flags & CRYPTO_TFM_REQ_WEAK_KEY)) {
tfm->crt_flags |= CRYPTO_TFM_RES_WEAK_KEY;
return -EINVAL;
}
}

dev->flags &= ~HIFN_FLAG_OLD_KEY;

memcpy(ctx->key, key, len);
Expand Down

0 comments on commit 65689df

Please sign in to comment.