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

Commit cfa2b54e authored by Mati Vait's avatar Mati Vait Committed by Herbert Xu
Browse files

crypto: arc4 - Fixed coding style issues



Fixed coding style issues: unnecessary spaces, parentheses on wrong lines.

Signed-off-by: default avatarMati Vait <mativait@gmail.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent fae36640
Loading
Loading
Loading
Loading
+7 −8
Original line number Diff line number Diff line
@@ -36,8 +36,7 @@ static int arc4_set_key(struct crypto_tfm *tfm, const u8 *in_key,
	for (i = 0; i < 256; i++)
		ctx->S[i] = i;

	for(i = 0; i < 256; i++)
	{
	for (i = 0; i < 256; i++) {
		u8 a = ctx->S[i];
		j = (j + in_key[k] + a) & 0xff;
		ctx->S[i] = ctx->S[j];