/rev/614c32bfe8fb
changeset: 1340:614c32bfe8fb
user:      Marcel Keller <[email protected]>
date:      Tue Oct 27 19:59:42 2009 +0100
summary:   apps/aes: Adapted program counters.

diffstat:

 apps/aes.py |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (16 lines):

diff -r 99ae184a2674 -r 614c32bfe8fb apps/aes.py
--- a/apps/aes.py       Tue Oct 27 19:59:21 2009 +0100
+++ b/apps/aes.py       Tue Oct 27 19:59:42 2009 +0100
@@ -125,9 +125,9 @@
 
     if options.active:
         if options.exponentiation is False:
-            max = 461
-            js = [3 + i * 23 + j for i in range(20)
-                  for j in range(0, 14, 2) + [15]]
+            max = 621
+            js = [3 + i * 31 + j for i in range(20)
+                  for j in range(0, 21, 3) + [22]]
         elif options.exponentiation == 0 or options.exponentiation == 3:
             max = 821
             js = [1 + i * 41 + j * 3 for i in range(20) for j in range(13)]
_______________________________________________
viff-commits mailing list
[email protected]
http://lists.viff.dk/listinfo.cgi/viff-commits-viff.dk

Reply via email to