aboutsummaryrefslogtreecommitdiff
path: root/rpc_misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'rpc_misc.c')
-rw-r--r--rpc_misc.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/rpc_misc.c b/rpc_misc.c
index cf5e4a0..3f466bb 100644
--- a/rpc_misc.c
+++ b/rpc_misc.c
@@ -78,15 +78,23 @@ typedef struct {
} client_slot_t;
#ifndef HAL_PIN_MINIMUM_ITERATIONS
-#define HAL_PIN_MINIMUM_ITERATIONS 10000
+#define HAL_PIN_MINIMUM_ITERATIONS 1000
#endif
#ifndef HAL_PIN_DEFAULT_ITERATIONS
-#define HAL_PIN_DEFAULT_ITERATIONS 20000
+#define HAL_PIN_DEFAULT_ITERATIONS 2000
#endif
static uint32_t hal_pin_default_iterations = HAL_PIN_DEFAULT_ITERATIONS;
+/*
+ * Seconds to delay when given a bad PIN.
+ */
+
+#ifndef HAL_PIN_DELAY_ON_FAILURE
+#define HAL_PIN_DELAY_ON_FAILURE 5
+#endif
+
#ifndef HAL_STATIC_CLIENT_STATE_BLOCKS
#define HAL_STATIC_CLIENT_STATE_BLOCKS 10
#endif
@@ -155,8 +163,10 @@ static hal_error_t login(const hal_client_handle_t client,
for (int i = 0; i < sizeof(buf); i++)
diff |= buf[i] ^ p->pin[i];
- if (diff != 0)
+ if (diff != 0) {
+ hal_sleep(HAL_PIN_DELAY_ON_FAILURE);
return HAL_ERROR_PIN_INCORRECT;
+ }
client_slot_t *slot = find_handle(client);
0400 committer Paul Selkirk <paul@psgd.org> 2016-03-29 16:44:12 -0400 Add xdr-specific error codes; update caller's length in hal_xdr_decode_buffer().' href='/sw/libhal/commit/xdr.c?h=sha3_mode&id=14465a488fafbfb4837bad5652508784c8941f38'>14465a4
cef7ba6





1a00bef
cef7ba6


79559c5
cef7ba6


14465a4
cef7ba6





3ba7ca4










cef7ba6




79559c5
cef7ba6



b1225c1
79559c5

cef7ba6


14465a4
cef7ba6

79559c5

cef7ba6






79559c5


cef7ba6







1a00bef
cef7ba6


1a00bef
cef7ba6


79559c5
cef7ba6

79559c5

cef7ba6






79559c5

14465a4
cef7ba6

cef7ba6












1a00bef
cef7ba6
2104d64


cef7ba6
1a00bef

cdaf07d

2104d64

cef7ba6
2104d64



cdaf07d
2104d64





cef7ba6


79559c5

cef7ba6
14465a4
cef7ba6
14465a4

cef7ba6
79559c5
cef7ba6











79559c5
cef7ba6
79559c5



cef7ba6


79559c5
cef7ba6

79559c5




cef7ba6


79559c5

cef7ba6

79559c5



cef7ba6


79559c5
cef7ba6


79559c5






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
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