-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathblake2s.core
More file actions
43 lines (35 loc) · 815 Bytes
/
blake2s.core
File metadata and controls
43 lines (35 loc) · 815 Bytes
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
CAPI=2:
name: secworks:crypto:blake2s:1.0.0
description: Verilog implementation of the BLAKE2s hash function
license: BSD-2-Clause
filesets:
rtl:
files:
- src/rtl/blake2s.v
- src/rtl/blake2s_core.v
- src/rtl/blake2s_m_select.v
- src/rtl/blake2s_G.v
file_type : verilogSource
tb:
files:
- src/tb/tb_blake2s.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 : blake2s
sky130:
default_tool: openlane
filesets: [rtl, openlane]
toplevel: blake2s
tb_blake2s : &tb
default_tool: icarus
filesets: [rtl, tb]
toplevel : tb_blake2s