-
Notifications
You must be signed in to change notification settings - Fork 3
/
poly1305.core
62 lines (50 loc) · 1.15 KB
/
poly1305.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
CAPI=2:
name : secworks:crypto:poly1305:0
filesets:
rtl:
files:
- src/rtl/poly1305.v
- src/rtl/poly1305_core.v
- src/rtl/poly1305_final.v
- src/rtl/poly1305_mulacc.v
- src/rtl/poly1305_pblock.v
file_type : verilogSource
tb:
files:
- src/tb/tb_poly1305.v
- src/tb/tb_poly1305_core.v
- src/tb/tb_poly1305_final.v
- src/tb/tb_poly1305_mulacc.v
- src/tb/tb_poly1305_pblock.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 : poly1305
sky130:
default_tool: openlane
filesets: [rtl, openlane]
toplevel: poly1305
tb_poly1305: &tb
default_tool: icarus
filesets: [rtl, tb]
toplevel : tb_poly1305
tb_poly1305_core:
<<: *tb
toplevel : tb_poly1305_core
tb_poly1305_final:
<<: *tb
toplevel : tb_poly1305_final
tb_poly1305_mulacc:
<<: *tb
toplevel : tb_poly1305_mulacc
tb_poly1305_pblock:
<<: *tb
toplevel : tb_poly1305_pblock