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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
|
//======================================================================
//
// keywrap_core.v
// --------------
// Core that tries to implement AES KEY WRAP as specified in
// RFC 3394 and extended with padding in RFC 5649.
// Experimental core at the moment. Does Not Work.
// The maximum wrap object size is 64 kByte.
//
//
// Author: Joachim Strombergson
// Copyright (c) 2018, NORDUnet A/S
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
// - Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// - Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// - Neither the name of the NORDUnet nor the names of its contributors may
// be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
// PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
//======================================================================
module keywrap_core #(parameter MEM_BITS = 11)
(
input wire clk,
input wire reset_n,
input wire init,
input wire next,
input wire encdec,
output wire ready,
output wire valid,
output wire loaded,
input wire [31 : 0] timeout,
input wire ping,
input wire zeroise,
input wire [(MEM_BITS - 2) : 0] rlen,
input wire [255 : 0] key,
input wire keylen,
input wire [63 : 0] a_init,
output wire [63 : 0] a_result,
input wire api_we,
input wire [(MEM_BITS - 1) : 0] api_addr,
input wire [31 : 0] api_wr_data,
output wire [31 : 0] api_rd_data
);
//----------------------------------------------------------------
// Paramenters and local defines.
//----------------------------------------------------------------
localparam MAX_ITERATIONS = 6 - 1;
localparam CTRL_IDLE = 4'h0;
localparam CTRL_INIT_WAIT = 4'h1;
localparam CTRL_NEXT_WSTART = 4'h2;
localparam CTRL_NEXT_USTART = 4'h3;
localparam CTRL_NEXT_LOOP0 = 4'h4;
localparam CTRL_NEXT_LOOP = 4'h5;
localparam CTRL_NEXT_WAIT = 4'h6;
localparam CTRL_NEXT_UPDATE = 4'h7;
localparam CTRL_NEXT_WCHECK = 4'h8;
localparam CTRL_NEXT_UCHECK = 4'h9;
localparam CTRL_NEXT_FINALIZE = 4'ha;
localparam CTRL_ZERO_WAIT = 4'hb;
//----------------------------------------------------------------
// Registers and memories including control signals.
//----------------------------------------------------------------
reg [63 : 0] a_reg;
reg [63 : 0] a_new;
reg a_we;
reg init_a;
reg ready_reg;
reg ready_new;
reg ready_we;
reg valid_reg;
reg valid_new;
reg valid_we;
reg [(MEM_BITS - 2) : 0] block_ctr_reg;
reg [(MEM_BITS - 2) : 0] block_ctr_new;
reg block_ctr_we;
reg block_ctr_dec;
reg block_ctr_inc;
reg block_ctr_rst;
reg block_ctr_set;
reg [2 : 0] iteration_ctr_reg;
reg [2 : 0] iteration_ctr_new;
reg iteration_ctr_we;
reg iteration_ctr_inc;
reg iteration_ctr_dec;
reg iteration_ctr_set;
reg iteration_ctr_rst;
reg [31 : 0] key_timeout_ctr_reg;
reg [31 : 0] key_timeout_ctr_new;
reg key_timeout_ctr_we;
reg key_timeout_ctr_set;
reg key_timeout_ctr_dec;
reg key_timeout;
reg key_loaded_reg;
reg key_loaded_new;
reg key_loaded_we;
reg [3 : 0] keywrap_core_ctrl_reg;
reg [3 : 0] keywrap_core_ctrl_new;
reg keywrap_core_ctrl_we;
//----------------------------------------------------------------
// Wires.
//----------------------------------------------------------------
reg aes_init;
reg aes_next;
wire aes_ready;
wire aes_valid;
reg [255 : 0] aes_key;
reg aes_keylen;
reg [127 : 0] aes_block;
wire [127 : 0] aes_result;
reg update_state;
reg zero_key;
reg core_we;
reg [(MEM_BITS - 2) : 0] core_addr;
reg [63 : 0] core_wr_data;
wire [63 : 0] core_rd_data;
//----------------------------------------------------------------
// Instantiations.
//----------------------------------------------------------------
keywrap_mem #(.API_ADDR_BITS(MEM_BITS))
mem(
.clk(clk),
.api_we(api_we),
.api_addr(api_addr),
.api_wr_data(api_wr_data),
.api_rd_data(api_rd_data),
.core_we(core_we),
.core_addr(core_addr),
.core_wr_data(core_wr_data),
.core_rd_data(core_rd_data)
);
aes_core aes(
.clk(clk),
.reset_n(reset_n),
.encdec(encdec),
.init(aes_init),
.next(aes_next),
.key(aes_key),
.keylen(aes_keylen),
.block(aes_block),
.ready(aes_ready),
.result(aes_result),
.result_valid(aes_valid)
);
//----------------------------------------------------------------
// Assignments for ports.
//----------------------------------------------------------------
assign a_result = a_reg;
assign ready = ready_reg;
assign valid = valid_reg;
assign loaded = key_loaded_reg;
//----------------------------------------------------------------
// reg_update
//----------------------------------------------------------------
always @ (posedge clk or negedge reset_n)
begin: reg_update
if (!reset_n)
begin
a_reg <= 64'h0;
ready_reg <= 1'h1;
valid_reg <= 1'h1;
block_ctr_reg <= {(MEM_BITS - 1){1'h0}};
iteration_ctr_reg <= 3'h0;
key_timeout_ctr_reg <= 32'h0;
key_loaded_reg <= 1'h0;
keywrap_core_ctrl_reg <= CTRL_IDLE;
end
else
begin
if (a_we)
a_reg <= a_new;
if (ready_we)
ready_reg <= ready_new;
if (valid_we)
valid_reg <= valid_new;
if (block_ctr_we)
block_ctr_reg <= block_ctr_new;
if (iteration_ctr_we)
iteration_ctr_reg <= iteration_ctr_new;
if (key_timeout_ctr_we)
key_timeout_ctr_reg <= key_timeout_ctr_new;
if (key_loaded_we)
key_loaded_reg <= key_loaded_new;
if (keywrap_core_ctrl_we)
keywrap_core_ctrl_reg <= keywrap_core_ctrl_new;
end
end // reg_update
//----------------------------------------------------------------
// zeroise_mux
//----------------------------------------------------------------
always @*
begin : zeroise_mux
if (zero_key)
begin
aes_key = 256'h0;
aes_keylen = 1'h1;
end
else
begin
aes_key = key;
aes_keylen = keylen;
end
end
//----------------------------------------------------------------
// keywrap_logic
//
// Main logic for the key wrap functionality.
//----------------------------------------------------------------
always @*
begin : keywrap_logic
reg [63 : 0] xor_val;
a_new = 64'h0;
a_we = 1'h0;
core_addr = block_ctr_reg;
core_we = 1'h0;
xor_val = (rlen * iteration_ctr_reg) + {51'h0, (block_ctr_reg + 1'h1)};
if (encdec)
aes_block = {a_reg, core_rd_data};
else
aes_block = {(a_reg ^ xor_val), core_rd_data};
core_wr_data = aes_result[63 : 0];
if (init_a)
begin
a_new = a_init;
a_we = 1'h1;
end
if (update_state)
begin
core_we = 1'h1;
if (encdec)
a_new = aes_result[127 : 64] ^ xor_val;
else
a_new = aes_result[127 : 64];
a_we = 1'h1;
end
end
//----------------------------------------------------------------
// block_ctr
//----------------------------------------------------------------
always @*
begin : block_ctr
block_ctr_new = {(MEM_BITS - 1){1'h0}};
block_ctr_we = 1'h0;
if (block_ctr_rst)
begin
block_ctr_new = {(MEM_BITS - 1){1'h0}};
block_ctr_we = 1'h1;
end
if (block_ctr_set)
begin
block_ctr_new = (rlen - 1'h1);
block_ctr_we = 1'h1;
end
if (block_ctr_dec)
begin
block_ctr_new = block_ctr_reg - 1'h1;
block_ctr_we = 1'h1;
end
if (block_ctr_inc)
begin
block_ctr_new = block_ctr_reg + 1'h1;
block_ctr_we = 1'h1;
end
end
//----------------------------------------------------------------
// iteration_ctr
//----------------------------------------------------------------
always @*
begin : iteration_ctr
iteration_ctr_new = 3'h0;
iteration_ctr_we = 1'h0;
if (iteration_ctr_rst)
begin
iteration_ctr_new = 3'h0;
iteration_ctr_we = 1'h1;
end
if (iteration_ctr_set)
begin
iteration_ctr_new = MAX_ITERATIONS;
iteration_ctr_we = 1'h1;
end
if (iteration_ctr_dec)
begin
iteration_ctr_new = iteration_ctr_reg - 1'h1;
iteration_ctr_we = 1'h1;
end
if (iteration_ctr_inc)
begin
iteration_ctr_new = iteration_ctr_reg + 1'h1;
iteration_ctr_we = 1'h1;
end
end
//----------------------------------------------------------------
// key_timeout_ctr
//----------------------------------------------------------------
always @*
begin : key_timeout_ctr
key_timeout_ctr_new = 32'h0;
key_timeout_ctr_we = 1'h0;
key_timeout = 1'h0;
if (key_timeout_ctr_reg == 32'h0)
key_timeout = 1'h1;
if (key_timeout_ctr_set || ping)
begin
key_timeout_ctr_new = timeout;
key_timeout_ctr_we = 1'h1;
end
else if (key_timeout_ctr_dec)
begin
key_timeout_ctr_new = key_timeout_ctr_reg - 1'h1;
key_timeout_ctr_we = 1'h1;
end
end
//----------------------------------------------------------------
// keywrap_core_ctrl
//----------------------------------------------------------------
always @*
begin : keywrap_core_ctrl
ready_new = 1'h0;
ready_we = 1'h0;
valid_new = 1'h0;
valid_we = 1'h0;
init_a = 1'h0;
update_state = 1'h0;
aes_init = 1'h0;
aes_next = 1'h0;
block_ctr_dec = 1'h0;
block_ctr_inc = 1'h0;
block_ctr_rst = 1'h0;
block_ctr_set = 1'h0;
iteration_ctr_inc = 1'h0;
iteration_ctr_dec = 1'h0;
iteration_ctr_set = 1'h0;
iteration_ctr_rst = 1'h0;
key_timeout_ctr_set = 1'h0;
key_timeout_ctr_dec = 1'h0;
zero_key = 1'h0;
key_loaded_new = 1'h0;
key_loaded_we = 1'h0;
keywrap_core_ctrl_new = CTRL_IDLE;
keywrap_core_ctrl_we = 1'h0;
case (keywrap_core_ctrl_reg)
CTRL_IDLE:
begin
if (key_loaded_reg)
begin
if (key_timeout || zeroise)
begin
aes_init = 1'h1;
zero_key = 1'h1;
ready_new = 1'h0;
ready_we = 1'h1;
valid_new = 1'h0;
valid_we = 1'h1;
keywrap_core_ctrl_new = CTRL_ZERO_WAIT;
keywrap_core_ctrl_we = 1'h1;
end
else
begin
key_timeout_ctr_dec = 1'h1;
end
end
else
begin
if (init)
begin
aes_init = 1'h1;
ready_new = 1'h0;
ready_we = 1'h1;
valid_new = 1'h0;
valid_we = 1'h1;
keywrap_core_ctrl_new = CTRL_INIT_WAIT;
keywrap_core_ctrl_we = 1'h1;
end
if (next)
begin
ready_new = 1'h0;
ready_we = 1'h1;
valid_new = 1'h0;
valid_we = 1'h1;
init_a = 1'h1;
if (encdec)
keywrap_core_ctrl_new = CTRL_NEXT_WSTART;
else
keywrap_core_ctrl_new = CTRL_NEXT_USTART;
keywrap_core_ctrl_we = 1'h1;
end
end
end
CTRL_INIT_WAIT:
begin
if (aes_ready)
begin
ready_new = 1'h1;
ready_we = 1'h1;
key_loaded_new = 1'h1;
key_loaded_we = 1'h1;
key_timeout_ctr_set = 1'h1;
keywrap_core_ctrl_new = CTRL_IDLE;
keywrap_core_ctrl_we = 1'h1;
end
end
CTRL_NEXT_WSTART:
begin
block_ctr_rst = 1'h1;
iteration_ctr_rst = 1'h1;
keywrap_core_ctrl_new = CTRL_NEXT_LOOP0;
keywrap_core_ctrl_we = 1'h1;
end
CTRL_NEXT_USTART:
begin
block_ctr_set = 1'h1;
iteration_ctr_set = 1'h1;
keywrap_core_ctrl_new = CTRL_NEXT_LOOP0;
keywrap_core_ctrl_we = 1'h1;
end
CTRL_NEXT_LOOP0:
begin
keywrap_core_ctrl_new = CTRL_NEXT_LOOP;
keywrap_core_ctrl_we = 1'h1;
end
CTRL_NEXT_LOOP:
begin
aes_next = 1'h1;
keywrap_core_ctrl_new = CTRL_NEXT_WAIT;
keywrap_core_ctrl_we = 1'h1;
end
CTRL_NEXT_WAIT:
begin
if (aes_ready)
begin
keywrap_core_ctrl_new = CTRL_NEXT_UPDATE;
keywrap_core_ctrl_we = 1'h1;
end
end
CTRL_NEXT_UPDATE:
begin
update_state = 1'h1;
if (encdec)
keywrap_core_ctrl_new = CTRL_NEXT_WCHECK;
else
keywrap_core_ctrl_new = CTRL_NEXT_UCHECK;
keywrap_core_ctrl_we = 1'h1;
end
CTRL_NEXT_WCHECK:
begin
if (block_ctr_reg < (rlen - 1'h1))
begin
block_ctr_inc = 1'h1;
keywrap_core_ctrl_new = CTRL_NEXT_LOOP0;
keywrap_core_ctrl_we = 1'h1;
end
else if (iteration_ctr_reg < MAX_ITERATIONS)
begin
block_ctr_rst = 1'h1;
iteration_ctr_inc = 1'h1;
keywrap_core_ctrl_new = CTRL_NEXT_LOOP0;
keywrap_core_ctrl_we = 1'h1;
end
else
begin
keywrap_core_ctrl_new = CTRL_NEXT_FINALIZE;
keywrap_core_ctrl_we = 1'h1;
end
end
CTRL_NEXT_UCHECK:
begin
if (block_ctr_reg > 0)
begin
block_ctr_dec = 1'h1;
keywrap_core_ctrl_new = CTRL_NEXT_LOOP0;
keywrap_core_ctrl_we = 1'h1;
end
else if (iteration_ctr_reg > 0)
begin
block_ctr_set = 1'h1;
iteration_ctr_dec = 1'h1;
keywrap_core_ctrl_new = CTRL_NEXT_LOOP0;
keywrap_core_ctrl_we = 1'h1;
end
else
begin
keywrap_core_ctrl_new = CTRL_NEXT_FINALIZE;
keywrap_core_ctrl_we = 1'h1;
end
end
CTRL_NEXT_FINALIZE:
begin
ready_new = 1'h1;
ready_we = 1'h1;
valid_new = 1'h1;
valid_we = 1'h1;
key_timeout_ctr_set = 1'h1;
keywrap_core_ctrl_new = CTRL_IDLE;
keywrap_core_ctrl_we = 1'h1;
end
CTRL_ZERO_WAIT:
begin
zero_key = 1'h1;
if (aes_ready)
begin
key_loaded_new = 1'h0;
key_loaded_we = 1'h1;
ready_new = 1'h1;
ready_we = 1'h1;
keywrap_core_ctrl_new = CTRL_IDLE;
keywrap_core_ctrl_we = 1'h1;
end
end
default:
begin
end
endcase // case (keywrap_core_ctrl_reg)
end // keywrap_core_ctrl
endmodule // keywrap_core
//======================================================================
// EOF keywrap_core.v
//======================================================================
|