From 891730d13b324fad916572a82f0bd610c5de9aad Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Sun, 13 Sep 2020 23:06:24 +0000 Subject: Rename for conversion --- .../GitRepositories%2Fcore%2Fhash%2Fsha3.trac | 104 +++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 raw-wiki-dump/GitRepositories%2Fcore%2Fhash%2Fsha3.trac (limited to 'raw-wiki-dump/GitRepositories%2Fcore%2Fhash%2Fsha3.trac') diff --git a/raw-wiki-dump/GitRepositories%2Fcore%2Fhash%2Fsha3.trac b/raw-wiki-dump/GitRepositories%2Fcore%2Fhash%2Fsha3.trac new file mode 100644 index 0000000..946c60b --- /dev/null +++ b/raw-wiki-dump/GitRepositories%2Fcore%2Fhash%2Fsha3.trac @@ -0,0 +1,104 @@ +{{{ +#!htmlcomment + +This page is maintained automatically by a script. Don't modify this page by hand, +your changes will just be overwritten the next time the script runs. Talk to your +Friendly Neighborhood Repository Maintainer if you need to change something here. + +}}} + +{{{ +#!html +

SHA-3

+ +

Core Description

+ +

This core implements the sponge construction defined in the SHA-3 hash standard.

+ +

API Specification

+ +

The interface of the core is similar to other CrypTech cores. FMC memory map is split into two parts, the first part contains registers and looks like the following:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OffsetRegister
0x0000NAME0
0x0004NAME1
0x0008VERSION
0x0020CONTROL
0x0024STATUS
+ +

The core has the following registers:

+ + + +

The second part of the address space is split into two banks:

+ + + + + + + + + + + + + + + + + + +
OffsetBank
0x200BLOCK
0x300STATE
+ +

Length of each bank is 200 bytes, the first bank has read-write access and contains input data block, the second bank is read-only and contains the core's internal state.

+ +

Vendor-specific Primitives

+ +

This core doesn't use vendor-specific primitives.

+}}} + +[[RepositoryIndex(format=table,glob=core/hash/sha3)]] + +|| Clone `https://git.cryptech.is/core/hash/sha3.git` || -- cgit v1.2.3 ='sha1'>79559c5
cef7ba6













79559c5
cef7ba6







79559c5
cef7ba6





79559c5
cef7ba6

b1225c1
cef7ba6




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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85