Linux cryptographic layer development
 help / color / mirror / Atom feed
* [PATCH] crypto/aes.c remove operator ? and variable t in bf_setkey
@ 2007-07-16  0:52 Frederik Sdun
  2007-07-16  3:28 ` Herbert Xu
  0 siblings, 1 reply; 6+ messages in thread
From: Frederik Sdun @ 2007-07-16  0:52 UTC (permalink / raw)
  To: linux-crypto, herbert, davem

Hi,

this removes the the ? operator which is false nearly all the time.


--- aes.c.orig  2007-07-15 11:43:21.000000000 +0200
+++ aes.c       2007-07-16 01:56:49.000000000 +0200
@@ -156,9 +156,12 @@
 
                p = (p << 1) ^ (p & 0x80 ? 0x01b : 0);
        }
+
+       sbx_tab[0] = 0x63;
+       isb_tab[0x63] = (u8) 0;
 
-       for (i = 0; i < 256; ++i) {
-               p = (i ? pow_tab[255 - log_tab[i]] : 0);
+       for (i = 1; i < 256; ++i) {
+               p = pow_tab[255 - log_tab[i]];
                q = ((p >> 7) | (p << 1)) ^ ((p >> 6) | (p << 2));
                p ^= 0x63 ^ q ^ ((q >> 6) | (q << 2));
                sbx_tab[i] = p;

this removes the variable t which is only a working copy of p, but you
do not need a copy

@@ -135,7 +135,7 @@
 static void __init
 gen_tabs (void)
 {
-       u32 i, t;
+       u32 i;
        u8 p, q;
 
        /* log and power tables for GF(2**8) finite field with
@@ -168,38 +171,38 @@
        for (i = 0; i < 256; ++i) {
                p = sbx_tab[i];
 
-               t = p;
-               fl_tab[0][i] = t;
-               fl_tab[1][i] = rol32(t, 8);
-               fl_tab[2][i] = rol32(t, 16);
-               fl_tab[3][i] = rol32(t, 24);
+
+               fl_tab[0][i] = p;
+               fl_tab[1][i] = rol32(p, 8);
+               fl_tab[2][i] = rol32(p, 16);
+               fl_tab[3][i] = rol32(p, 24);
 
-               t = ((u32) ff_mult (2, p)) |
+               p = ((u32) ff_mult (2, p)) |
                    ((u32) p << 8) |
                    ((u32) p << 16) | ((u32) ff_mult (3, p) << 24);
 
-               ft_tab[0][i] = t;
-               ft_tab[1][i] = rol32(t, 8);
-               ft_tab[2][i] = rol32(t, 16);
-               ft_tab[3][i] = rol32(t, 24);
+               ft_tab[0][i] = p;
+               ft_tab[1][i] = rol32(p, 8);
+               ft_tab[2][i] = rol32(p, 16);
+               ft_tab[3][i] = rol32(p, 24);
 
                p = isb_tab[i];
 
-               t = p;
-               il_tab[0][i] = t;
-               il_tab[1][i] = rol32(t, 8);
-               il_tab[2][i] = rol32(t, 16);
-               il_tab[3][i] = rol32(t, 24);
+
+               il_tab[0][i] = p;
+               il_tab[1][i] = rol32(p, 8);
+               il_tab[2][i] = rol32(p, 16);
+               il_tab[3][i] = rol32(p, 24);
 
-               t = ((u32) ff_mult (14, p)) |
+               p = ((u32) ff_mult (14, p)) |
                    ((u32) ff_mult (9, p) << 8) |
                    ((u32) ff_mult (13, p) << 16) |
                    ((u32) ff_mult (11, p) << 24);
 
-               it_tab[0][i] = t;
-               it_tab[1][i] = rol32(t, 8);
-               it_tab[2][i] = rol32(t, 16);
-               it_tab[3][i] = rol32(t, 24);
+               it_tab[0][i] = p;
+               it_tab[1][i] = rol32(p, 8);
+               it_tab[2][i] = rol32(p, 16);
+               it_tab[3][i] = rol32(p, 24);
        }
 }


Frederik

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] crypto/aes.c remove operator ? and variable t in bf_setkey
  2007-07-16  0:52 [PATCH] crypto/aes.c remove operator ? and variable t in bf_setkey Frederik Sdun
@ 2007-07-16  3:28 ` Herbert Xu
  2007-07-16 13:15   ` Frederik Sdun
  0 siblings, 1 reply; 6+ messages in thread
From: Herbert Xu @ 2007-07-16  3:28 UTC (permalink / raw)
  To: Frederik Sdun; +Cc: linux-crypto, davem

On Mon, Jul 16, 2007 at 02:52:34AM +0200, Frederik Sdun wrote:
> 
> this removes the the ? operator which is false nearly all the time.

These changes look good.  Could you please resend them as
patches that can be directly applied and add a sign-off?
You can refer to Documentation/SubmittingPatches for detailed
instructions.

> --- aes.c.orig  2007-07-15 11:43:21.000000000 +0200
> +++ aes.c       2007-07-16 01:56:49.000000000 +0200
> @@ -156,9 +156,12 @@
>  
>                 p = (p << 1) ^ (p & 0x80 ? 0x01b : 0);
>         }
> +
> +       sbx_tab[0] = 0x63;
> +       isb_tab[0x63] = (u8) 0;

Please kill that cast.

Thanks,
-- 
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] crypto/aes.c remove operator ? and variable t in bf_setkey
  2007-07-16  3:28 ` Herbert Xu
@ 2007-07-16 13:15   ` Frederik Sdun
  2007-07-17 12:35     ` Herbert Xu
  0 siblings, 1 reply; 6+ messages in thread
From: Frederik Sdun @ 2007-07-16 13:15 UTC (permalink / raw)
  To: Herbert Xu; +Cc: linux-crypto, davem

Removed the temporary variable t.
Operator ? removed out of loop by false case. 

Signed-off-by: Frederik Sdun <fs_1600@web.de>

--- crypto/aes.c.orig   2007-07-15 11:43:21.000000000 +0200
+++ crypto/aes.c        2007-07-16 14:38:57.000000000 +0200
@@ -135,7 +135,7 @@ f_mult (u8 a, u8 b)
 static void __init
 gen_tabs (void)
 {
-       u32 i, t;
+       u32 i;
        u8 p, q;
 
        /* log and power tables for GF(2**8) finite field with
@@ -157,8 +157,11 @@ gen_tabs (void)
                p = (p << 1) ^ (p & 0x80 ? 0x01b : 0);
        }
 
-       for (i = 0; i < 256; ++i) {
-               p = (i ? pow_tab[255 - log_tab[i]] : 0);
+       sbx_tab[0] = 0x63;
+       isb_tab[0x63] = 0;
+
+       for (i = 1; i < 256; ++i) {
+               p = pow_tab[255 - log_tab[i]];
                q = ((p >> 7) | (p << 1)) ^ ((p >> 6) | (p << 2));
                p ^= 0x63 ^ q ^ ((q >> 6) | (q << 2));
                sbx_tab[i] = p;
@@ -168,38 +171,36 @@ gen_tabs (void)
        for (i = 0; i < 256; ++i) {
                p = sbx_tab[i];
 
-               t = p;
-               fl_tab[0][i] = t;
-               fl_tab[1][i] = rol32(t, 8);
-               fl_tab[2][i] = rol32(t, 16);
-               fl_tab[3][i] = rol32(t, 24);
+               fl_tab[0][i] = p;
+               fl_tab[1][i] = rol32(p, 8);
+               fl_tab[2][i] = rol32(p, 16);
+               fl_tab[3][i] = rol32(p, 24);
 
-               t = ((u32) ff_mult (2, p)) |
+               p = ((u32) ff_mult (2, p)) |
                    ((u32) p << 8) |
                    ((u32) p << 16) | ((u32) ff_mult (3, p) << 24);
 
-               ft_tab[0][i] = t;
-               ft_tab[1][i] = rol32(t, 8);
-               ft_tab[2][i] = rol32(t, 16);
-               ft_tab[3][i] = rol32(t, 24);
+               ft_tab[0][i] = p;
+               ft_tab[1][i] = rol32(p, 8);
+               ft_tab[2][i] = rol32(p, 16);
+               ft_tab[3][i] = rol32(p, 24);
 
                p = isb_tab[i];
 
-               t = p;
-               il_tab[0][i] = t;
-               il_tab[1][i] = rol32(t, 8);
-               il_tab[2][i] = rol32(t, 16);
-               il_tab[3][i] = rol32(t, 24);
+               il_tab[0][i] = p;
+               il_tab[1][i] = rol32(p, 8);
+               il_tab[2][i] = rol32(p, 16);
+               il_tab[3][i] = rol32(p, 24);
 
-               t = ((u32) ff_mult (14, p)) |
+               p = ((u32) ff_mult (14, p)) |
                    ((u32) ff_mult (9, p) << 8) |
                    ((u32) ff_mult (13, p) << 16) |
                    ((u32) ff_mult (11, p) << 24);
 
-               it_tab[0][i] = t;
-               it_tab[1][i] = rol32(t, 8);
-               it_tab[2][i] = rol32(t, 16);
-               it_tab[3][i] = rol32(t, 24);
+               it_tab[0][i] = p;
+               it_tab[1][i] = rol32(p, 8);
+               it_tab[2][i] = rol32(p, 16);
+               it_tab[3][i] = rol32(p, 24);
        }
 }

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] crypto/aes.c remove operator ? and variable t in bf_setkey
  2007-07-16 13:15   ` Frederik Sdun
@ 2007-07-17 12:35     ` Herbert Xu
  2007-07-18 21:55       ` Frederik Sdun
  0 siblings, 1 reply; 6+ messages in thread
From: Herbert Xu @ 2007-07-17 12:35 UTC (permalink / raw)
  To: Frederik Sdun; +Cc: linux-crypto, davem

Sorry, your patch doesn't apply.

On Mon, Jul 16, 2007 at 03:15:13PM +0200, Frederik Sdun wrote:
> 
> --- crypto/aes.c.orig   2007-07-15 11:43:21.000000000 +0200
> +++ crypto/aes.c        2007-07-16 14:38:57.000000000 +0200

Please make sure your patch can be applied with patch -p1.

> @@ -135,7 +135,7 @@ f_mult (u8 a, u8 b)
>  static void __init
>  gen_tabs (void)
>  {
> -       u32 i, t;
> +       u32 i;

Your mailer has corrupted the tabs.

Cheers,
-- 
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] crypto/aes.c remove operator ? and variable t in bf_setkey
  2007-07-17 12:35     ` Herbert Xu
@ 2007-07-18 21:55       ` Frederik Sdun
  2007-07-25  6:51         ` Herbert Xu
  0 siblings, 1 reply; 6+ messages in thread
From: Frederik Sdun @ 2007-07-18 21:55 UTC (permalink / raw)
  To: Herbert Xu; +Cc: linux-crypto, davem

Hi
now i have the failure in my patch. i excuse for the spamming and foolness.

happy coding Frederik

Removed the temporary variable t which is not needed working copy of p.
Operator ? removed out of loop by false case. 

Signed-off-by: Frederik Sdun <fs_1600@web.de>

--- linux-2.6/crypto/aes.c.orig 2007-07-15 11:43:21.000000000 +0200
+++ linux-2.6/crypto/aes.c      2007-07-18 23:40:49.000000000 +0200
@@ -135,7 +135,7 @@ f_mult (u8 a, u8 b)
 static void __init
 gen_tabs (void)
 {
-       u32 i, t;
+       u32 i;
        u8 p, q;
 
        /* log and power tables for GF(2**8) finite field with
@@ -157,8 +157,11 @@ gen_tabs (void)
                p = (p << 1) ^ (p & 0x80 ? 0x01b : 0);
        }
 
-       for (i = 0; i < 256; ++i) {
-               p = (i ? pow_tab[255 - log_tab[i]] : 0);
+       sbx_tab[0] = 0x63;
+       isb_tab[0x63] = 0;
+
+       for (i = 1; i < 256; ++i) {
+               p = pow_tab[255 - log_tab[i]];
                q = ((p >> 7) | (p << 1)) ^ ((p >> 6) | (p << 2));
                p ^= 0x63 ^ q ^ ((q >> 6) | (q << 2));
                sbx_tab[i] = p;
@@ -168,38 +171,36 @@ gen_tabs (void)
        for (i = 0; i < 256; ++i) {
                p = sbx_tab[i];
 
-               t = p;
-               fl_tab[0][i] = t;
-               fl_tab[1][i] = rol32(t, 8);
-               fl_tab[2][i] = rol32(t, 16);
-               fl_tab[3][i] = rol32(t, 24);
+               fl_tab[0][i] = p;
+               fl_tab[1][i] = rol32(p, 8);
+               fl_tab[2][i] = rol32(p, 16);
+               fl_tab[3][i] = rol32(p, 24);
 
-               t = ((u32) ff_mult (2, p)) |
+               p = ((u32) ff_mult (2, p)) |
                    ((u32) p << 8) |
                    ((u32) p << 16) | ((u32) ff_mult (3, p) << 24);
 
-               ft_tab[0][i] = t;
-               ft_tab[1][i] = rol32(t, 8);
-               ft_tab[2][i] = rol32(t, 16);
-               ft_tab[3][i] = rol32(t, 24);
+               ft_tab[0][i] = p;
+               ft_tab[1][i] = rol32(p, 8);
+               ft_tab[2][i] = rol32(p, 16);
+               ft_tab[3][i] = rol32(p, 24);
 
                p = isb_tab[i];
 
-               t = p;
-               il_tab[0][i] = t;
-               il_tab[1][i] = rol32(t, 8);
-               il_tab[2][i] = rol32(t, 16);
-               il_tab[3][i] = rol32(t, 24);
+               il_tab[0][i] = p;
+               il_tab[1][i] = rol32(p, 8);
+               il_tab[2][i] = rol32(p, 16);
+               il_tab[3][i] = rol32(p, 24);
 
-               t = ((u32) ff_mult (14, p)) |
+               p = ((u32) ff_mult (14, p)) |
                    ((u32) ff_mult (9, p) << 8) |
                    ((u32) ff_mult (13, p) << 16) |
                    ((u32) ff_mult (11, p) << 24);
 
-               it_tab[0][i] = t;
-               it_tab[1][i] = rol32(t, 8);
-               it_tab[2][i] = rol32(t, 16);
-               it_tab[3][i] = rol32(t, 24);
+               it_tab[0][i] = p;
+               it_tab[1][i] = rol32(p, 8);
+               it_tab[2][i] = rol32(p, 16);
+               it_tab[3][i] = rol32(p, 24);
        }
 }

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] crypto/aes.c remove operator ? and variable t in bf_setkey
  2007-07-18 21:55       ` Frederik Sdun
@ 2007-07-25  6:51         ` Herbert Xu
  0 siblings, 0 replies; 6+ messages in thread
From: Herbert Xu @ 2007-07-25  6:51 UTC (permalink / raw)
  To: Frederik Sdun; +Cc: linux-crypto, davem

On Wed, Jul 18, 2007 at 11:55:05PM +0200, Frederik Sdun wrote:
> 
> Removed the temporary variable t which is not needed working copy of p.
> Operator ? removed out of loop by false case. 

Sorry, the tabs are still coming across as spaces.
 
Cheers,
-- 
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-07-25  6:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-16  0:52 [PATCH] crypto/aes.c remove operator ? and variable t in bf_setkey Frederik Sdun
2007-07-16  3:28 ` Herbert Xu
2007-07-16 13:15   ` Frederik Sdun
2007-07-17 12:35     ` Herbert Xu
2007-07-18 21:55       ` Frederik Sdun
2007-07-25  6:51         ` Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox