summaryrefslogtreecommitdiffstats
path: root/all_pairs/source/rijndael_dec/ChangeLog.txt
diff options
context:
space:
mode:
Diffstat (limited to 'all_pairs/source/rijndael_dec/ChangeLog.txt')
-rw-r--r--all_pairs/source/rijndael_dec/ChangeLog.txt58
1 files changed, 58 insertions, 0 deletions
diff --git a/all_pairs/source/rijndael_dec/ChangeLog.txt b/all_pairs/source/rijndael_dec/ChangeLog.txt
new file mode 100644
index 0000000..75e26a8
--- /dev/null
+++ b/all_pairs/source/rijndael_dec/ChangeLog.txt
@@ -0,0 +1,58 @@
1File: rijndael_decoder.c
2Source: security section of MiBench
3
4- Prefix library functions with rijndael_dec
5- Move functionality from function main into functions
6 rijndael_enc_init, rijndael_enc_main, and rijndael_enc_return
7 (reusing code from rijndael_enc benchmark)
8- Added general TACLeBench header to beginning of source code
9- Applied code formatting with astyle as in the example
10- Rename to rijndael_dec.c
11- Make loop counter in rijndael_dec_init unsigned
12- Remove dead code in rijndael_dec_decfile
13
14File: aes.h
15Source: security section of MiBench
16
172016-04-20:
18- Replace with file aes.h from rijndael_enc benchmark
19- Declare prototype for rijndael_enc_decrypt instead of rijndael_enc_encrypt
20
21File: aes.c
22Source: security section of MiBench
23
242016-04-20:
25- Replace with file aes.h from rijndael_enc benchmark, using prefix
26 rijndael_dec
27- Replace implementation for rijndael_enc_encrypt with implementation
28 for rijndael_enc_decrypt
29- Applied code formatting with astyle as in the example
30- Remove unused macros s, ff_poly, ff_hi, m1, m2, m3, FFmulX,
31 fwd_mcol, fwd_var, inv_var, si, so, fwd_rnd, inv_rnd, fwd_lrnd,
32 inv_lrnd, locals, l_copy, state_in, state_out, round
33
342016-06-14:
35- Added cast to make C++ compiler happy
36
37File: aestab.h
38Source: security section of MiBench
39
402016-04-20:
41- Replace with file aestab.h from rijndael_enc benchmark, using prefix
42 rijndael_dec
43- Remove unused arrays rijndael_dec_s_box, rijndael_dec_inv_s_box,
44 rijndael_dec_ft_tab
45
46Files: glibc_common.c, my_file.c, glibc_common.h, my_file.h
47Source: security section of MiBench
48
492016-04-20:
50- Replace with files rijndael_enc_libc.c and rijndael_enc_libc.h from
51 rijndael_enc benchmark (renamed to rijndael_dec_libc.c and
52 rijndael_dec_libc.h, using prefix rijndael_dec)
53
54File: input_small_enc.c
55Source: security section of MiBench
56
572016-02-26:
58- Prefix input array with rijndael_dec