crypto: anubis - Fix checkpatch errors
Signed-off-by: Richard Hartmann <richih.mailinglist@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
5357c6c43e
commit
189bd4b056
1 changed files with 11 additions and 11 deletions
|
@ -469,14 +469,13 @@ static int anubis_setkey(struct crypto_tfm *tfm, const u8 *in_key,
|
||||||
u32 kappa[ANUBIS_MAX_N];
|
u32 kappa[ANUBIS_MAX_N];
|
||||||
u32 inter[ANUBIS_MAX_N];
|
u32 inter[ANUBIS_MAX_N];
|
||||||
|
|
||||||
switch (key_len)
|
switch (key_len) {
|
||||||
{
|
|
||||||
case 16: case 20: case 24: case 28:
|
case 16: case 20: case 24: case 28:
|
||||||
case 32: case 36: case 40:
|
case 32: case 36: case 40:
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
*flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
|
*flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
|
||||||
return - EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx->key_len = key_len * 8;
|
ctx->key_len = key_len * 8;
|
||||||
|
@ -530,23 +529,24 @@ static int anubis_setkey(struct crypto_tfm *tfm, const u8 *in_key,
|
||||||
/*
|
/*
|
||||||
* compute kappa^{r+1} from kappa^r:
|
* compute kappa^{r+1} from kappa^r:
|
||||||
*/
|
*/
|
||||||
if (r == R) {
|
if (r == R)
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
for (i = 0; i < N; i++) {
|
for (i = 0; i < N; i++) {
|
||||||
int j = i;
|
int j = i;
|
||||||
inter[i] = T0[(kappa[j--] >> 24) ];
|
inter[i] = T0[(kappa[j--] >> 24) ];
|
||||||
if (j < 0) j = N - 1;
|
if (j < 0)
|
||||||
|
j = N - 1;
|
||||||
inter[i] ^= T1[(kappa[j--] >> 16) & 0xff];
|
inter[i] ^= T1[(kappa[j--] >> 16) & 0xff];
|
||||||
if (j < 0) j = N - 1;
|
if (j < 0)
|
||||||
|
j = N - 1;
|
||||||
inter[i] ^= T2[(kappa[j--] >> 8) & 0xff];
|
inter[i] ^= T2[(kappa[j--] >> 8) & 0xff];
|
||||||
if (j < 0) j = N - 1;
|
if (j < 0)
|
||||||
|
j = N - 1;
|
||||||
inter[i] ^= T3[(kappa[j ] ) & 0xff];
|
inter[i] ^= T3[(kappa[j ] ) & 0xff];
|
||||||
}
|
}
|
||||||
kappa[0] = inter[0] ^ rc[r];
|
kappa[0] = inter[0] ^ rc[r];
|
||||||
for (i = 1; i < N; i++) {
|
for (i = 1; i < N; i++)
|
||||||
kappa[i] = inter[i];
|
kappa[i] = inter[i];
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue