diff aes.c @ 190:ce75e74f160f libavutil

indent
author michael
date Sun, 14 Jan 2007 19:24:34 +0000
parents 61ca39abb491
children a2a3c80706e5
line wrap: on
line diff
--- a/aes.c	Sun Jan 14 19:24:06 2007 +0000
+++ b/aes.c	Sun Jan 14 19:24:34 2007 +0000
@@ -183,11 +183,11 @@
     }
 
     if(decrypt){
-    for(i=1; i<rounds; i++){
-        for(j=0; j<16; j++)
-            a->round_key[i][0][j]= sbox[a->round_key[i][0][j]];
-        mix(a->round_key[i], dec_multbl);
-    }
+        for(i=1; i<rounds; i++){
+            for(j=0; j<16; j++)
+                a->round_key[i][0][j]= sbox[a->round_key[i][0][j]];
+            mix(a->round_key[i], dec_multbl);
+        }
     }
 
     return a;