59 lines
1.8 KiB
Plaintext
Executable File
59 lines
1.8 KiB
Plaintext
Executable File
File: rijndael_decoder.c
|
|
Source: security section of MiBench
|
|
|
|
- Prefix library functions with rijndael_dec
|
|
- Move functionality from function main into functions
|
|
rijndael_enc_init, rijndael_enc_main, and rijndael_enc_return
|
|
(reusing code from rijndael_enc benchmark)
|
|
- Added general TACLeBench header to beginning of source code
|
|
- Applied code formatting with astyle as in the example
|
|
- Rename to rijndael_dec.c
|
|
- Make loop counter in rijndael_dec_init unsigned
|
|
- Remove dead code in rijndael_dec_decfile
|
|
|
|
File: aes.h
|
|
Source: security section of MiBench
|
|
|
|
2016-04-20:
|
|
- Replace with file aes.h from rijndael_enc benchmark
|
|
- Declare prototype for rijndael_enc_decrypt instead of rijndael_enc_encrypt
|
|
|
|
File: aes.c
|
|
Source: security section of MiBench
|
|
|
|
2016-04-20:
|
|
- Replace with file aes.h from rijndael_enc benchmark, using prefix
|
|
rijndael_dec
|
|
- Replace implementation for rijndael_enc_encrypt with implementation
|
|
for rijndael_enc_decrypt
|
|
- Applied code formatting with astyle as in the example
|
|
- Remove unused macros s, ff_poly, ff_hi, m1, m2, m3, FFmulX,
|
|
fwd_mcol, fwd_var, inv_var, si, so, fwd_rnd, inv_rnd, fwd_lrnd,
|
|
inv_lrnd, locals, l_copy, state_in, state_out, round
|
|
|
|
2016-06-14:
|
|
- Added cast to make C++ compiler happy
|
|
|
|
File: aestab.h
|
|
Source: security section of MiBench
|
|
|
|
2016-04-20:
|
|
- Replace with file aestab.h from rijndael_enc benchmark, using prefix
|
|
rijndael_dec
|
|
- Remove unused arrays rijndael_dec_s_box, rijndael_dec_inv_s_box,
|
|
rijndael_dec_ft_tab
|
|
|
|
Files: glibc_common.c, my_file.c, glibc_common.h, my_file.h
|
|
Source: security section of MiBench
|
|
|
|
2016-04-20:
|
|
- Replace with files rijndael_enc_libc.c and rijndael_enc_libc.h from
|
|
rijndael_enc benchmark (renamed to rijndael_dec_libc.c and
|
|
rijndael_dec_libc.h, using prefix rijndael_dec)
|
|
|
|
File: input_small_enc.c
|
|
Source: security section of MiBench
|
|
|
|
2016-02-26:
|
|
- Prefix input array with rijndael_dec
|