forked from secworks/aes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aes.core
64 lines (52 loc) · 1.17 KB
/
aes.core
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
CAPI=2:
name : secworks:crypto:aes:0
filesets:
rtl:
files:
- src/rtl/aes_core.v
- src/rtl/aes.v
- src/rtl/aes_key_mem.v
- src/rtl/aes_encipher_block.v
- src/rtl/aes_inv_sbox.v
- src/rtl/aes_sbox.v
- src/rtl/aes_decipher_block.v
file_type : verilogSource
tb:
files:
- src/tb/tb_aes.v
- src/tb/tb_aes_key_mem.v
- src/tb/tb_aes_core.v
- src/tb/tb_aes_decipher_block.v
- src/tb/tb_aes_encipher_block.v
file_type : verilogSource
openlane: {files : [data/sky130.tcl : {file_type : tclSource}]}
targets:
default:
filesets: [rtl]
lint:
default_tool : verilator
filesets : [rtl]
tools:
verilator:
mode : lint-only
toplevel : aes
sky130:
default_tool: openlane
filesets: [rtl, openlane]
toplevel: aes
tb_aes: &tb
default_tool: icarus
filesets: [rtl, tb]
toplevel : tb_aes
tb_aes_key_mem:
<<: *tb
toplevel : tb_aes_key_mem
tb_aes_core:
<<: *tb
toplevel : tb_aes_core
tb_aes_decipher_block:
<<: *tb
toplevel : tb_aes_decipher_block
tb_aes_encipher_block:
<<: *tb
toplevel : tb_aes_encipher_block