aboutsummaryrefslogtreecommitdiff
path: root/raw-wiki-dump/GitRepositories%2Ftest%2Ffpga_entropy.md
diff options
context:
space:
mode:
Diffstat (limited to 'raw-wiki-dump/GitRepositories%2Ftest%2Ffpga_entropy.md')
-rw-r--r--raw-wiki-dump/GitRepositories%2Ftest%2Ffpga_entropy.md31
1 files changed, 0 insertions, 31 deletions
diff --git a/raw-wiki-dump/GitRepositories%2Ftest%2Ffpga_entropy.md b/raw-wiki-dump/GitRepositories%2Ftest%2Ffpga_entropy.md
deleted file mode 100644
index 6af5b66..0000000
--- a/raw-wiki-dump/GitRepositories%2Ftest%2Ffpga_entropy.md
+++ /dev/null
@@ -1,31 +0,0 @@
-```
-#!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
-<h1>fpga_entropy</h1>
-
-<p>Test implementation of FPGA-internal entropy source.</p>
-
-<h2>Introduction</h2>
-
-<p>This is an attempt at building an entropy source within a FPGA
-device. the entropy source consists of multiple delay loops that are
-XORed together. The bits sampled are used to generate 32 bit words which
-can be extracted to a host machine for analysis.</p>
-
-<p>The main problem is probably being able to control the FPGA tool not to
-kill the delay loops. We try to do this by building hierarchies. It
-might work.</p>
-```
-
-[[RepositoryIndex(format=table,glob=test/fpga_entropy)]]
-
-| Clone `https://git.cryptech.is/test/fpga_entropy.git` |
-|---|
d.org> 2015-10-29 15:42:29 -0400 committer Paul Selkirk <paul@psgd.org> 2015-10-29 15:42:29 -0400 add libhal tests, some cleanup (some mess-making)' href='/sw/stm32/commit/libc/syscalls.c?h=auto_zeroise&id=9278e9bafd96105b64f9946eb94f5618f01649d3'>9278e9b
358d038
9278e9b





































358d038
9278e9b









61e42dd
9278e9b
358d038
61e42dd






358d038
9278e9b
61e42dd
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215