aboutsummaryrefslogtreecommitdiff
path: root/utils
AgeCommit message (Collapse)Author
2016-07-05Attempt to add resource management, for multiple cores of the same type.Paul Selkirk
Find a suitable core, and mark it busy. Don't forget to release it as soon as you're done. This has a knock-on effect of un-const'ing core arguments and struct fields in a lot of places, and it moves some core checks around.
2016-06-26Merge branch 'master' of https://git.cryptech.is/sw/libhal.git.Rob Austein
2016-06-26Update libhal makefiles to use new LIBxxx_SRC / LIBxxx_BLD scheme so libhal ↵Rob Austein
can find tfm.h again.
2016-06-25Dial back the last-gasp iterations to something sane.Paul Selkirk
I can't see protecting the well-known default password against a brute-force attack, and 100k iterations takes almost a minute, which makes a terrible first impression.
2016-06-25Rename GNUmakefile to Makefile for consistency.Paul Selkirk
2016-06-24Support VPATH builds.Rob Austein
2016-06-01Make the makefile hopefully a little more readable/maintainable.Paul Selkirk
2016-05-26correct BPKDF2 -> PBKDF2 ;)Fredrik Thulin
2016-05-25Doh, helps if one actually **uses** the argument one just parsed.Rob Austein
2016-05-25PBKDF2 works better if we generate the right number of output bytes.Rob Austein
2016-05-25Start cleaning up PIN code.Rob Austein
2016-05-14Trailing whitespace cleanup.Rob Austein
2015-12-13Merge Paul's copyright updates.Rob Austein
2015-12-13whack copyrightsPaul Selkirk
2015-12-12Silence platform-dependent compiler whining: in general, when printf()Rob Austein
whines about some platform-dependent integer size issue, it's best to use both an explicitly sized format (eg, "%lu") and an explicit cast (eg, "(unsigned long)") when silencing the warning, otherwise it'll just pop up again in different form on the next platform tested.
2015-11-14Catch up with other branch merges.Paul Selkirk
- TRNG cores are contiguous (but they still have their own mux, so occupy a block of 16 cores). - Use Rob's updated libhal in my new apps.
2015-11-12fix printf warnings, fix time_check calculationPaul Selkirk
2015-10-31add core probe utilityPaul Selkirk
2015-07-17Debian Jessie hangs with bs=128, Kosagi forum tells us that the magicRob Austein
solution is to change to bs=32.
2015-07-05Add load_novena_fpga script.Rob Austein
2015-07-05Use C99 variadic macro as safety wrapper around variadic function.Rob Austein
Are we having fun yet?
2015-07-05NULL-terminate string list, doh.Rob Austein
2015-07-05Get rid of autoconf, as we don't really need it. Add eim_peek_pokeRob Austein
utility program, based on Paul's example in the core/platform/novena repository.
ein <sra@hactrn.net> 2015-06-03 11:00:13 -0400 committer Rob Austein <sra@hactrn.net> 2015-06-03 11:00:13 -0400 ModExp now working!' href='/sw/libhal/commit/tests/test-rsa.c?id=407905016d0404507ef08c71eec89158aa95cb35'>4079050
2c81ecf
b3bbd3d
bbb6e1e

2c81ecf
bbb6e1e

2c81ecf
9cca190
2c81ecf

4079050
5f152f5


30f8e4e
b3bbd3d

5f152f5
5f152f5

7a89eaa
12ed3ab
7a89eaa
7a89eaa
10dfb62








bbb6e1e

5f152f5
7a89eaa
5f152f5
b3bbd3d
7a89eaa




66c47cc
7a89eaa



5f152f5

8934e10
ab5a876


30f8e4e
b3bbd3d

ab5a876


bbb6e1e
3e679aa
12ed3ab
ab5a876
ab5a876

a615b13

bbb6e1e

ab5a876


bbb6e1e

66c47cc
ab5a876

bbb6e1e
ab5a876
bbb6e1e

3e679aa
bbb6e1e

3e679aa
bbb6e1e

ab5a876
bbb6e1e

ab5a876
bbb6e1e


ab5a876
bbb6e1e



8c427a7
ab5a876


b3bbd3d
ab5a876




bbb6e1e

ab5a876
bbb6e1e
8c427a7
ab5a876
bbb6e1e

ab5a876
66c47cc


b3bbd3d
bbb6e1e
66c47cc
bbb6e1e
66c47cc
bbb6e1e





8c427a7








bbb6e1e

















8c427a7

bbb6e1e











66c47cc
3e679aa

ab5a876
66c47cc
ab5a876


8934e10

















5f152f5


8934e10

5f152f5
8934e10

5f152f5


ab5a876


4079050

30f8e4e
4079050
8934e10

5f152f5
b3bbd3d
5f152f5

b3bbd3d
5f152f5

b3bbd3d
5f152f5
ab5a876
b3bbd3d
ab5a876
8934e10
4079050
2c81ecf


30f8e4e
97c3a85

b3bbd3d
2c81ecf
b3bbd3d

2c81ecf
2c81ecf
f210238
2c81ecf

9cca190

8934e10

b3bbd3d

2c81ecf



cf865e9





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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328