proposal_chip_security.htm
70.1 KB
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
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=Word.Document>
<meta name=Generator content="Microsoft Word 9">
<meta name=Originator content="Microsoft Word 9">
<link rel=File-List href="./proposal_chip_security_files/filelist.xml">
<link rel=Edit-Time-Data href="./proposal_chip_security_files/editdata.mso">
<link rel=OLE-Object-Data href="./proposal_chip_security_files/oledata.mso">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->
<title>AES resources</title>
<!--[if gte mso 9]><xml>
<o:DocumentProperties>
<o:Author>pramila</o:Author>
<o:Template>Normal</o:Template>
<o:LastAuthor>pramila</o:LastAuthor>
<o:Revision>2</o:Revision>
<o:TotalTime>1</o:TotalTime>
<o:LastPrinted>2002-05-30T22:48:00Z</o:LastPrinted>
<o:Created>2002-05-30T23:10:00Z</o:Created>
<o:LastSaved>2002-05-30T23:10:00Z</o:LastSaved>
<o:Pages>7</o:Pages>
<o:Words>2952</o:Words>
<o:Characters>16831</o:Characters>
<o:Company>RouteFree</o:Company>
<o:Lines>140</o:Lines>
<o:Paragraphs>33</o:Paragraphs>
<o:CharactersWithSpaces>20669</o:CharactersWithSpaces>
<o:Version>9.3821</o:Version>
</o:DocumentProperties>
</xml><![endif]-->
<style>
<!--
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-parent:"";
margin:0in;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:12.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";}
h1
{mso-style-next:Normal;
margin:0in;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
page-break-after:avoid;
mso-outline-level:1;
font-size:12.0pt;
font-family:"Times New Roman";
mso-font-kerning:0pt;}
h2
{mso-style-next:Normal;
margin:0in;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
page-break-after:avoid;
mso-outline-level:2;
font-size:14.0pt;
mso-bidi-font-size:12.0pt;
font-family:"Times New Roman";
font-weight:normal;}
a:link, span.MsoHyperlink
{color:blue;
text-decoration:underline;
text-underline:single;}
a:visited, span.MsoHyperlinkFollowed
{color:purple;
text-decoration:underline;
text-underline:single;}
@page Section1
{size:8.5in 11.0in;
margin:1.0in 1.25in 1.0in 1.25in;
mso-header-margin:.5in;
mso-footer-margin:.5in;
mso-paper-source:0;}
div.Section1
{page:Section1;}
/* List Definitions */
@list l0
{mso-list-id:72440092;
mso-list-type:hybrid;
mso-list-template-ids:-1695365136 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l0:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l0:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1
{mso-list-id:178859051;
mso-list-type:hybrid;
mso-list-template-ids:1097602780 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l1:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l1:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l2
{mso-list-id:297414102;
mso-list-type:hybrid;
mso-list-template-ids:672940000 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l2:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l2:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l2:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l2:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l2:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l2:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l2:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l2:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l2:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3
{mso-list-id:314141183;
mso-list-type:hybrid;
mso-list-template-ids:1875130856 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l3:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l3:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4
{mso-list-id:435950853;
mso-list-type:hybrid;
mso-list-template-ids:479654670 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l4:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l4:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5
{mso-list-id:460924313;
mso-list-type:hybrid;
mso-list-template-ids:1254414604 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l5:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l5:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6
{mso-list-id:653609609;
mso-list-type:hybrid;
mso-list-template-ids:1916146364 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l6:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l6:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l7
{mso-list-id:673995423;
mso-list-type:hybrid;
mso-list-template-ids:-1562229104 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l7:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l7:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l7:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l7:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l7:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l7:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l7:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l7:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l7:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l8
{mso-list-id:772095894;
mso-list-type:hybrid;
mso-list-template-ids:449599630 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l8:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l8:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l8:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l8:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l8:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l8:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l8:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l8:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l8:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l9
{mso-list-id:787898681;
mso-list-type:hybrid;
mso-list-template-ids:1034179030 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l9:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l9:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l9:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l9:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l9:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l9:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l9:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l9:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l9:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l10
{mso-list-id:1244880204;
mso-list-type:hybrid;
mso-list-template-ids:-3257128 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l10:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:1.0in;
mso-level-number-position:left;
margin-left:1.0in;
text-indent:-.25in;
font-family:Symbol;}
@list l10:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l10:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l10:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l10:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l10:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l10:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l10:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l10:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l11
{mso-list-id:1367680119;
mso-list-type:hybrid;
mso-list-template-ids:962249092 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l11:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l11:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l11:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l11:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l11:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l11:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l11:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l11:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l11:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l12
{mso-list-id:1395007059;
mso-list-type:hybrid;
mso-list-template-ids:276077690 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l12:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l12:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l12:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l12:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l12:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l12:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l12:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l12:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l12:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l13
{mso-list-id:1686516132;
mso-list-type:hybrid;
mso-list-template-ids:500865532 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l13:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l13:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l13:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l13:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l13:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l13:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l13:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l13:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l13:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l14
{mso-list-id:1700737455;
mso-list-type:hybrid;
mso-list-template-ids:-1740459080 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l14:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l14:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l14:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l14:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l14:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l14:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l14:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l14:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l14:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l15
{mso-list-id:1728145101;
mso-list-type:hybrid;
mso-list-template-ids:469415978 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l15:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l15:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l15:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l15:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l15:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l15:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l15:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l15:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l15:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l16
{mso-list-id:1988974107;
mso-list-type:hybrid;
mso-list-template-ids:1077808508 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l16:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l16:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l16:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l16:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l16:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l16:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l16:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l16:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l16:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l17
{mso-list-id:1999841764;
mso-list-type:hybrid;
mso-list-template-ids:-2134756544 67698689 67698691 67698689 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l17:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l17:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:"Courier New";
mso-bidi-font-family:"Times New Roman";}
@list l17:level3
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l17:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l17:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l17:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l17:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l17:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l17:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l18
{mso-list-id:2023167083;
mso-list-type:hybrid;
mso-list-template-ids:-442219046 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l18:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l18:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l18:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l18:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l18:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l18:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l18:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l18:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l18:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l19
{mso-list-id:2088652070;
mso-list-type:hybrid;
mso-list-template-ids:-722826508 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l19:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
font-family:Symbol;}
@list l19:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l19:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l19:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l19:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l19:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l19:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l19:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l19:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
ol
{margin-bottom:0in;}
ul
{margin-bottom:0in;}
-->
</style>
<!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="3074"/>
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1"/>
</o:shapelayout></xml><![endif]-->
</head>
<body lang=EN-US link=blue vlink=purple style='tab-interval:.5in'>
<div class=Section1>
<h2>Chip Level Support for Security</h2>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal>The three basic problems to solve are </p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l18 level1 lfo3;tab-stops:list .5in'><b>Authentication
of flash</b> inserted with a game to be played on our chip. The game
should come from our depot and correspond to a license issued by us.</li>
<li class=MsoNormal style='mso-list:l18 level1 lfo3;tab-stops:list .5in'><b>Authentication
of game running from DDR (secure execution)</b>. This is to prevent
someone from attaching an auxiliary board to interface with our chip, with
DDR and flash/cartridge interface to run their own games that did not come
from our servers. Or somehow replace data in our DDR after it is
downloaded from flash.</li>
<li class=MsoNormal style='mso-list:l18 level1 lfo3;tab-stops:list .5in'><b>Encryption</b>:
since we do not have the resources (latency, performance) to do AES
encryption and decryption in and out of DDR, we decrypt content in the
chip and write out to DDR<span style="mso-spacerun: yes"> </span>in
plaintext form. The game executes out of there, exposing plaintext again.
Though all data traffic to DDR cannot be secured, we attempt to secure
critical code/data.</li>
</ul>
<p class=MsoNormal style='margin-left:.25in'><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal>The first problem has to be solved because it is fundamental
to our revenue model. Also it is a mass produce-able break-in. The second and third
have to be solved for preventing long term compromise of the content
distribution chain.</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><b>Resources:<o:p></o:p></b></p>
<p class=MsoNormal>The resources on the chip at our disposal to solve the above
problems are </p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l6 level1 lfo6;tab-stops:list .5in'>Chip
level support for a secure mode with access to restricted devices/registers.</li>
</ul>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l5 level1 lfo9;tab-stops:list .5in'>An
internal flash that can only be accessed in secure mode to store secure
data.</li>
<li class=MsoNormal style='mso-list:l5 level1 lfo9;tab-stops:list .5in'>Limited
number of cycles in secure mode available at regular timed intervals
(non-maskable) to do some monitoring/execution of security checks.</li>
</ul>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal>We address the three problems in the order of importance:</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><b>Problem 1:</b></p>
<p class=MsoNormal><b>Authentication of flash: (current final)<o:p></o:p></b></p>
<p class=MsoNormal>(Other proposals for flash authentication are summarized in
the document Proposals for authenticating content in BB player. Unless some
problem is discovered, the method outlined here will supersede those).</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><b>The usage model</b>: The user takes the removable memory
module in to the depot to download content (and license) into it. He brings it
home and attaches it back to the player to play the games on it.<span
style="mso-spacerun: yes"> </span>(An alternate model to download content was
to take the BB player to the depot and download via the Ethernet. Arguments
discussing the two approaches are in the following document: Analyzing
Security for new Usage Model. Review the summary at the end of that document for
justification for the new model).</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal>The license and the content are delivered to the BB player
at possibly different times, through different connections, when the removable
memory module is connected to the depot. The content is possibly cached in the
depot, but the license has to be issued by the server each time, when paid for
by a customer. </p>
<p class=MsoNormal>To mention the relevant parts of the license:</p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l3 level1 lfo12;tab-stops:list .5in'>Content
encryption key</li>
<li class=MsoNormal style='mso-list:l3 level1 lfo12;tab-stops:list .5in'>MD5
hash of the entire content </li>
<li class=MsoNormal style='mso-list:l3 level1 lfo12;tab-stops:list .5in'>A
random number/seed/key for BB re-encryption</li>
<li class=MsoNormal style='mso-list:l3 level1 lfo12;tab-stops:list .5in'>This
package is signed, certified by server and encrypted using the BB public
key</li>
</ul>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><b>Outline:<o:p></o:p></b></p>
<p class=MsoNormal>The following are the steps that achieve the authentication
of content transferring from depot to chip for game play: (In the following
discussion the function of the depot can be replaced by a smart media card
which has the copy of content and license downloaded from the depot) <b>(Follow
the violet solid path for content in the figure below)<o:p></o:p></b></p>
<p class=MsoNormal style='margin-left:.25in'><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l19 level1 lfo15;tab-stops:list .5in'>The
license for acquiring content has been paid for and acquired on the memory
module.</li>
<li class=MsoNormal style='mso-list:l19 level1 lfo15;tab-stops:list .5in'>The content
is downloaded to the memory module in its original encrypted format as it
is stored in the depot.</li>
</ul>
<p class=MsoNormal style='margin-left:.25in'>(The following operations happen
in secure mode in the player)</p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l19 level1 lfo15;tab-stops:list .5in'>The
content key is extracted from the license. </li>
<li class=MsoNormal style='mso-list:l19 level1 lfo15;tab-stops:list .5in'>The
BB player generates a new key by mixing in randomness to the re-encryption
key in the license. (see details later).</li>
<li class=MsoNormal style='mso-list:l19 level1 lfo15;tab-stops:list .5in'>The
content (which has been encrypted by this key by the server) is downloaded
from the memory module.</li>
</ul>
<p class=MsoNormal style='margin-left:.25in'><b>(Step 1 in figure)<o:p></o:p></b></p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l19 level1 lfo15;tab-stops:list .5in'>Every
N (multiple of 128 bit) byte block is decrypted (AES), and a MD5 hash is
computed. The state of the hash calculation is saved. </li>
<li class=MsoNormal style='mso-list:l19 level1 lfo15;tab-stops:list .5in'>The
N byte block is re-encrypted (AES software) using the new key and stored
in external flash. (see details later for mode and hardware). <b>(Step 2
in figure)</b></li>
<li class=MsoNormal style='mso-list:l19 level1 lfo15;tab-stops:list .5in'>Every
time a new block is downloaded the hash calculation continues as if it
were a continuous stream of data</li>
<li class=MsoNormal style='mso-list:l19 level1 lfo15;tab-stops:list .5in'>All
the content data is downloaded and saved in external module in this
manner. (Possibly overwriting the original data). <b>(Step 3 in figure)<o:p></o:p></b></li>
<li class=MsoNormal style='mso-list:l19 level1 lfo15;tab-stops:list .5in'>The
computed hash is verified against the signed hash in the license. If true,
the new key is saved in internal flash and the application is allowed to
run.</li>
<li class=MsoNormal style='mso-list:l19 level1 lfo15;tab-stops:list .5in'>The
application runs by decrypting flash content in run time while DMA occurs
from flash to DDR, storing decrypted content in DDR. The key set up is
done in secure mode and decryption in hardware.</li>
<li class=MsoNormal style='mso-list:l19 level1 lfo15;tab-stops:list .5in'>The
control exits secure mode after setting up the keys etc. and passes
control to the application.</li>
</ul>
<p class=MsoNormal style='margin-left:.25in'><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<h1>Memory card usage for storage/transport of content/license (blue dashed and
green dotted paths in diagram below):</h1>
<p class=MsoNormal>We limit the internal flash to only store as many (cid, key)
pairs as the memory modules can hold content. If additional storage is needed,
the smart media cards can be used for content backup. Smart media card can be
used for storage of content at home or for transporting from the depot. The
following operations are done:</p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l4 level1 lfo19;tab-stops:list .5in'>When
content is stored back into the smart media card from the memory module it
is decrypted by the internal key and re-encrypted by the original content
key (in license) and stored in smart media card <b>(follow blue dashed
path in the diagram). </b>The internal flash entry (cid, key) is deleted.</li>
<li class=MsoNormal style='mso-list:l4 level1 lfo19;tab-stops:list .5in'>When
content is loaded from smart media card (in either case) it is decrypted
by content key and re-encrypted by a newly generated key on the way to
flash (in the standard memory module).<span style="mso-spacerun: yes">
</span><b>(follow green dotted path in the diagram)<o:p></o:p></b></li>
</ul>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><b>Justification of approach</b>: Our chip can only play
content for which internal re-encryption key is available in flash. Since the
data is re-encrypted using a new key and stored in flash during download;
during run time, an illegal flash cannot masquerade as a legal one and play on
our chip, since the chip internally stores this new key. <b>This new key never
leaves the chip, and is known only to that BB. </b>So if someone replaces the
flash or replaces content at any time, the content would not run on our chip.
Secondly, this approach requires no hardware support (see details).</p>
<p class=MsoNormal>Other approaches that involve run time checking of hashes of
data read from flash require porting effort or a lot of state storage in the
chip.</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><!--[if gte vml 1]><v:shapetype id="_x0000_t202"
coordsize="21600,21600" o:spt="202" path="m0,0l0,21600,21600,21600,21600,0xe">
<v:stroke joinstyle="miter"/>
<v:path gradientshapeok="t" o:connecttype="rect"/>
</v:shapetype><v:shape id="_x0000_s1114" type="#_x0000_t202" style='position:absolute;
margin-left:275.55pt;margin-top:435.95pt;width:27pt;height:27pt;z-index:4'/><![endif]--><![if !vml]><span
style='mso-ignore:vglayout;position:absolute;z-index:2;margin-left:367px;
margin-top:581px;width:39px;height:39px'>
<table cellpadding=0 cellspacing=0>
<tr>
<td width=39 height=39 align=left valign=top bgcolor=white style='border:
.75pt solid black;vertical-align:top;background:white'><![endif]><![if !mso]><span
style='position:absolute;z-index:4'>
<table cellpadding=0 cellspacing=0 width="100%">
<tr>
<td><![endif]>
<div v:shape="_x0000_s1114" style='padding:3.6pt 7.2pt 3.6pt 7.2pt'
class=shape>
<p class=MsoNormal>3</p>
</div>
<![if !mso]></td>
</tr>
</table>
</span><![endif]><![if !mso & !vml]> <![endif]><![if !vml]></td>
</tr>
</table>
</span><![endif]><!--[if gte vml 1]><v:shape id="_x0000_s1113" type="#_x0000_t202"
style='position:absolute;margin-left:122.55pt;margin-top:507.95pt;width:27pt;
height:27pt;z-index:3'/><![endif]--><![if !vml]><span style='mso-ignore:vglayout;
position:absolute;z-index:1;margin-left:163px;margin-top:677px;width:39px;
height:39px'>
<table cellpadding=0 cellspacing=0>
<tr>
<td width=39 height=39 align=left valign=top bgcolor=white style='border:
.75pt solid black;vertical-align:top;background:white'><![endif]><![if !mso]><span
style='position:absolute;z-index:3'>
<table cellpadding=0 cellspacing=0 width="100%">
<tr>
<td><![endif]>
<div v:shape="_x0000_s1113" style='padding:3.6pt 7.2pt 3.6pt 7.2pt'
class=shape>
<p class=MsoNormal>2</p>
</div>
<![if !mso]></td>
</tr>
</table>
</span><![endif]><![if !mso & !vml]> <![endif]><![if !vml]></td>
</tr>
</table>
</span><![endif]><!--[if gte vml 1]><v:shape id="_x0000_s1112" type="#_x0000_t202"
style='position:absolute;margin-left:293.55pt;margin-top:552.95pt;width:27pt;
height:18pt;z-index:2'/><![endif]--><![if !vml]><span style='mso-ignore:vglayout;
position:absolute;z-index:0;margin-left:391px;margin-top:737px;width:39px;
height:27px'>
<table cellpadding=0 cellspacing=0>
<tr>
<td width=39 height=27 align=left valign=top bgcolor=white style='border:
.75pt solid black;vertical-align:top;background:white'><![endif]><![if !mso]><span
style='position:absolute;z-index:2'>
<table cellpadding=0 cellspacing=0 width="100%">
<tr>
<td><![endif]>
<div v:shape="_x0000_s1112" style='padding:3.6pt 7.2pt 3.6pt 7.2pt'
class=shape>
<p class=MsoNormal>1</p>
</div>
<![if !mso]></td>
</tr>
</table>
</span><![endif]><![if !mso & !vml]> <![endif]><![if !vml]></td>
</tr>
</table>
</span><![endif]><!--[if gte vml 1]><v:shapetype id="_x0000_t75" coordsize="21600,21600"
o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="_x0000_i1027" type="#_x0000_t75" style='width:459.75pt;
height:734.25pt' o:ole="">
<v:imagedata src="./proposal_chip_security_files/image001.wmz" o:title=""/>
</v:shape><![endif]--><![if !vml]><img width=613 height=979
src="./proposal_chip_security_files/image002.gif" v:shapes="_x0000_i1027"><![endif]><!--[if gte mso 9]><xml>
<o:OLEObject Type="Embed" ProgID="Word.Document.8" ShapeID="_x0000_i1027"
DrawAspect="Content" ObjectID="_1084280204">
</o:OLEObject>
</xml><![endif]--></p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal>The following shows the path during playback. The black
arrows are re-encrypted content, blue arrows are decrypted plaintext content.</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><b><!--[if gte vml 1]><v:shape id="_x0000_i1026" type="#_x0000_t75"
style='width:441.75pt;height:189.75pt' o:ole="">
<v:imagedata src="./proposal_chip_security_files/image003.wmz" o:title=""/>
</v:shape><![endif]--><![if !vml]><img width=589 height=253
src="./proposal_chip_security_files/image004.gif" v:shapes="_x0000_i1026"><![endif]><!--[if gte mso 9]><xml>
<o:OLEObject Type="Embed" ProgID="Word.Document.8" ShapeID="_x0000_i1026"
DrawAspect="Content" ObjectID="_1084280205">
</o:OLEObject>
</xml><![endif]--><o:p></o:p></b></p>
<p class=MsoNormal><b><![if !supportEmptyParas]> <![endif]><o:p></o:p></b></p>
<p class=MsoNormal><b>Details:<o:p></o:p></b></p>
<p class=MsoNormal><b>AES software or hardware:<o:p></o:p></b></p>
<p class=MsoNormal><b>Software:<o:p></o:p></b></p>
<p class=MsoNormal>AES encryption key setup: 300 clocks</p>
<p class=MsoNormal>AES decryption key setup:<span style="mso-spacerun: yes">
</span>1400 clocks</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal>For a large body of data, its about 20 cycles per byte for
encryption/decryption.</p>
<p class=MsoNormal>Requires about 60 bytes of RAM, about 1K bytes of code for
encryption and 1K for decryption.</p>
<p class=MsoNormal>Key storage: 16 bytes</p>
<p class=MsoNormal>On the fly sub-key generation:<span style="mso-spacerun:
yes"> </span>only 36 bytes of RAM</p>
<p class=MsoNormal>Precomputed subkeys: 160 bytes storage, faster execution.</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal>On a 100Mhz processor, (just for lower bounding), it takes
about 0.2 s per Mbyte. Which is less than the flash writing speed of 1-2 s/MB.
So the encryption can be done in software.</p>
<p class=MsoNormal>The decryption hardware already is designed in because it
has to be done in real time for DMA access from flash, hence it could be used
for decryption during content loading to flash as well.</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal>We need to use CBC mode while encrypting to make it less
vulnerable to code book style attack, so reading becomes slightly inefficient
(1 previous block needed to decrypt current block).</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><b>Hardware</b>: </p>
<p class=MsoNormal>Hardware speed depends on size of the core. (the appendix
has list of core vendors).</p>
<p class=MsoNormal>Example, using 128 bit key length,<span style="mso-spacerun:
yes"> </span>(one operation is 128 bits
.). (at 200MHz, 0.18 micron tech)</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l1 level1 lfo22;tab-stops:list .5in'>20 K
gates, 44 cycles/operation, 500 Mbits/sec</li>
<li class=MsoNormal style='mso-list:l1 level1 lfo22;tab-stops:list .5in'>34 K
gates, 11 cycles/operation, 2.3 Gbits/sec</li>
<li class=MsoNormal style='mso-list:l1 level1 lfo22;tab-stops:list .5in'>283 K
gates, 1 cycle/operation, 25.5 Gbits/sec (pipelined)</li>
</ul>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<h1>Approximate glue-logic to estimate buffer sizes/latency</h1>
<p class=MsoNormal>This is only for the purpose of characterizing the whole
path from flash to memory, not to describe how the logic will be implemented</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><!--[if gte vml 1]><v:line id="_x0000_s1026" style='position:absolute;
z-index:1' from="1in,369pt" to="81pt,369pt">
<v:stroke endarrow="block"/>
</v:line><![endif]--><![if !vml]><span style='mso-ignore:vglayout;position:
absolute;z-index:3;margin-left:95px;margin-top:486px;width:15px;height:14px'><img
width=15 height=14 src="./proposal_chip_security_files/image005.gif" v:shapes="_x0000_s1026"></span><![endif]><!--[if gte vml 1]><v:shape
id="_x0000_i1025" type="#_x0000_t75" style='width:486.75pt;height:405.75pt'
o:ole="">
<v:imagedata src="./proposal_chip_security_files/image006.wmz" o:title=""/>
</v:shape><![endif]--><![if !vml]><img width=649 height=541
src="./proposal_chip_security_files/image007.gif" v:shapes="_x0000_i1025"><![endif]><!--[if gte mso 9]><xml>
<o:OLEObject Type="Embed" ProgID="Word.Document.8" ShapeID="_x0000_i1025"
DrawAspect="Content" ObjectID="_1084280206">
</o:OLEObject>
</xml><![endif]--></p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal>The approximate steps are as follows</p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l15 level1 lfo25;tab-stops:list .5in'>software
programs the key (16 bytes)</li>
<li class=MsoNormal style='mso-list:l15 level1 lfo25;tab-stops:list .5in'>software
programs mode of operation (encrypt/decrypt/pass thru)</li>
<li class=MsoNormal style='mso-list:l15 level1 lfo25;tab-stops:list .5in'>after
chip is enabled data is clocked into the input buffer (16*0.1 usec + 16*17ns-96
clocks)</li>
<li class=MsoNormal style='mso-list:l15 level1 lfo25;tab-stops:list .5in'>input
is read in for decryption (44 clocks)</li>
<li class=MsoNormal style='mso-list:l15 level1 lfo25;tab-stops:list .5in'>output
is clocked out of the output buffer (2*17 ns 2 clocks)</li>
</ul>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal>total about 140 clocks per 16 bytes. Which will about equal
7M Bytes/sec throughput.</p>
<p class=MsoNormal>(This has to be increased by having double buffering in the
flash interface).</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><b>128 bit alignment overhead</b>:</p>
<p class=MsoNormal>And dma access has to be inflated to start from a 128 bit
boundary. And include complete 128 bit blocks. Hardware has to do this address
rounding and write back the requested data. This adds to some overhead. Worst
case is 2 page misses = 2*10usec= 120 clocks</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><b>CBC overhead:<o:p></o:p></b></p>
<p class=MsoNormal>When CBC mode is in use, it requires another 128 bits to be
read in (prev block). This could be included in the previous additional read,
otherwise adds another 60 clocks.</p>
<p class=MsoNormal>Together worst case is 3/2 pages extra in the beginning and
1 page at the end.</p>
<p class=MsoNormal>(when read address is in first half of 512 bit page,
previous 512 bits have to be read, when it is in second half of 512 bit page,
no previous page has to be read)</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><b>Random Number generation:<o:p></o:p></b></p>
<p class=MsoNormal>The chip has to generate a cryptographically secure random
number or symmetric key for the re-encryption. </p>
<p class=MsoNormal>Current proposal:</p>
<p class=MsoNormal>Have a good random number generator (hardware based) on the
server to embed a second re-encryption key in the license. The chip modifies
this key as follows: during writing to flash the writing times to write fixed
size blocks is saved and an MD5 hash over these numbers is calculated<span
style="mso-spacerun: yes"> </span>(after scaling to same range). The hash over
several numbers should make it return a string of uniformly distributed bits
converted from a normal (or whatever) distribution in the writing time jitter.
This hash is saved for next download. The next time, the server-generated key
is concatenated to the hash and hashed again. This becomes the new re-encryption
key.</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><b>Problem 2:<o:p></o:p></b></p>
<p class=MsoNormal><b>DRAM encryption/decryption</b>: <b>(discussion)<o:p></o:p></b></p>
<p class=MsoNormal>The main problems for encrypting and decrypting data to and
from DRAM:</p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l8 level1 lfo28;tab-stops:list .5in'>We
need both encryption and decryption since the data is modified by CPU,
graphics read-modify-write etc</li>
<li class=MsoNormal style='mso-list:l8 level1 lfo28;tab-stops:list .5in'>The
memory interface does not know code from data or which module the request
emerges from</li>
<li class=MsoNormal style='mso-list:l8 level1 lfo28;tab-stops:list .5in'>The
decrypt/encrypt operation will interface with performance of memory access</li>
<li class=MsoNormal style='mso-list:l8 level1 lfo28;tab-stops:list .5in'>The
data is accessed randomly. CPU accesses are due to cache misses.</li>
</ul>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal>So we have two approaches (ignoring the approach of doing
nothing at all!)</p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l11 level1 lfo31;tab-stops:list .5in'><i>(Currently
considered not feasible).</i> Have a uniform solution for encrypting and
decrypting in the RI and at the output of flash decryption. See AES
hardware performance numbers above. Assuming the full solution (10 round
128 bit AES) is impossible, a 6 round AES takes 350 Gbytes of chosen
plaintext and about ½ year to crack on a desktop CPU. Of-course we would
change keys each time, so this would be almost infeasible. If we increase
to 7 rounds, it increases to billions of years using known techniques. (5
rounds has an attack based on few KB of data possible with 1 trillion
calculations, so it is not safe). So 6 rounds and above are interesting
reduced round variants of<span style="mso-spacerun: yes">
</span>Rijndael. (assuming this should cost about 3-4 clocks per round, it
is considered infeasible).</li>
<li class=MsoNormal style='mso-list:l11 level1 lfo31;tab-stops:list .5in'>Tag
program code in the content, and use an unused bit in the word to write
this information bit. Detect the tag in the RI and do decryption on this
block (ECB). That way we would cover all the program code, which is only a
fraction of all memory accesses, and we do not need encryption in the RI,
only decryption, assuming program code is not self-modifying.</li>
<li class=MsoNormal style='mso-list:l11 level1 lfo31;tab-stops:list .5in'>The
alternative is to do the previous operation in the MI, but since the MI
cannot see the extra bits, it needs to carry the information in another
form, like an additional signal (bit) or use a lookup table. Is it
possible to lookup a table of, say 6-7 entries to decide whether or not to
decrypt?</li>
</ul>
<p class=MsoNormal style='margin-left:.5in'>Note: for future content, where
copy protection is really valuable, it could be possible to have the code as a
contiguous block, like in a video player code. Then this scheme would be used
to protect the player decoder, which would have embedded in it the DRM scheme
(decrypt and decode). Then the table to be looked up can be made much smaller
or even just one region.</p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l16 level1 lfo34;tab-stops:list .5in'>The
last option is to do some form of masking of data on the bus by doing an
xor before writing to DDR and an xor in the RI to invert while reading.</li>
</ul>
<p class=MsoNormal style='margin-left:.5in'>Current proposal:<span
style="mso-spacerun: yes"> </span>precompute for each of say, 16 segments of
DDR, MD5 hash(content re-encryption key, page address, serial number). The
content re-encryption key is 128 bits. The address is of the granularity of MB,
and serial number goes from 1
N for each hash calculation. Each hash
calculation produces 128 bits or 16 bytes. Two hash calculations thus produce
32 bytes.</p>
<p class=MsoNormal style='margin-left:.5in'>For each memory segment we save
these 32 byte quantities, and as data is read from DDR or written to DDR the
xor with these quantities is performed by looking up the masking function
corresponding to that memory segment.</p>
<p class=MsoNormal style='text-align:justify'><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><b>Problem 3: <o:p></o:p></b></p>
<p class=MsoNormal><b>DRAM authentication (discussion)<o:p></o:p></b></p>
<p class=MsoNormal>The main problem of authenticating DDR content is that there
is too much data to be signature-checked constantly and since data is
constantly modified it is difficult to check against known signatures. There
are two possible protections against illegal code executing from external
memory:</p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l13 level1 lfo37;tab-stops:list .5in'>Make
sure legal code resides in DDR where it is meant to be</li>
<li class=MsoNormal style='mso-list:l13 level1 lfo37;tab-stops:list .5in'>Reduce
the space in DDR from where illegal code can potentially execute.</li>
</ul>
<p class=MsoNormal style='margin-left:.25in'><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal style='margin-left:.25in'>Lets assume the CPU clock can
support this extra computation!</p>
<p class=MsoNormal style='margin-left:.25in'>Analyzing this possibility
(protecting memory ranges):</p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l17 level1 lfo40;tab-stops:list .5in'>Assume
we can map out from flash content the locations of critical code segments</li>
<li class=MsoNormal style='mso-list:l17 level1 lfo40;tab-stops:list .5in'>As
this content is DMA-ed to DDR, the destination regions are stored in a
table</li>
<li class=MsoNormal style='mso-list:l17 level1 lfo40;tab-stops:list .5in'>Every
time the secure timer interrupt happens these regions are randomly checked
for signature validity</li>
</ul>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l17 level1 lfo40;tab-stops:list .5in'>Characterize
a games CPU access to memory by mapping out regions of DDR that CPU
reads/writes into (excluding frame buffers, etc). This could dynamically
change, so one way might be to do the reverse: DMA requests through secure
kernel to help demarcate regions used by non-CPU blocks.</li>
</ul>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l17 level1 lfo40;tab-stops:list .5in'>We
need to track CPU accesses from MI to identify any access to illegal
regions.</li>
</ul>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l17 level1 lfo40;tab-stops:list .5in'>To
achieve that, we could do one of these in MI:</li>
</ul>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<ul style='margin-top:0in' type=disc>
<ul style='margin-top:0in' type=circle>
<li class=MsoNormal style='mso-list:l17 level2 lfo40;tab-stops:list 1.0in'>Push
all memory accesses from CPU to a storage and in the next secure timer
trap check if any access falls in illegal range </li>
<li class=MsoNormal style='mso-list:l17 level2 lfo40;tab-stops:list 1.0in'>In
hardware, check memory address against a table (of say a few values) to
see if it falls in an illegal region, if so, set a flag which will be
checked in next secure timer interrupt. </li>
</ul>
</ul>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal style='margin-left:.5in'>Neither of these add latency to the
request, since it is a parallel operation with the actual data fetch. However
the number of requests may flood before they can be checked in the next secure
interrupt.</p>
<p class=MsoNormal><span style='mso-tab-count:1'> </span>Some rough
calculation:</p>
<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;mso-list:l10 level1 lfo46;
tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><![endif]>Rough bcopy bandwidth at output of CPU at about 125 MHz
is about 1.18 Gbits/s</p>
<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;mso-list:l10 level1 lfo46;
tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><![endif]>=148 Mbytes/sec = 4.6 million requests per second
assuming a request reads in 32 bytes</p>
<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;mso-list:l10 level1 lfo46;
tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><![endif]>= about 4.6K requests every millisecond. So the storage
has to hold approx 5K addresses and</p>
<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;mso-list:l10 level1 lfo46;
tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><![endif]>in the secure interrupt 5K have to be validated against
a table of<span style="mso-spacerun: yes"> </span>known regions<span
style="mso-spacerun: yes"> </span>(if the table has N entries, thats worst
case N*5K*2 checks for the two boundaries). The context switch time is mostly
swapping SRAM contents in and out, which takes about 1usec per Kbyte.</p>
<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;mso-list:l10 level1 lfo46;
tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><![endif]>This number may be pruned to do random storage and
checks, or store not absolute addresses but in 1K granularity (for example). So
if an access is in the same 1K region as a previous access it does not have to
be stored. </p>
<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;mso-list:l10 level1 lfo46;
tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><![endif]>MD5 checking in software requires about 12-13 clocks
per byte. If entire code is about 1 MByte, that would take about 15x10^6
clocks. So if it has to be signature checked every one second, it would consume
about a tenth of a 200MHz CPU (if the CPU runs at 200MHz) and transfer about
1MB more from DDR to chip every second.</p>
<p class=MsoNormal>Note: all of these is feasible if the CPU can be made to run
faster. The extra cycles used to do the hash calculation and switching to
secure mode.</p>
<p class=MsoNormal><b>Appendices:<o:p></o:p></b></p>
<p class=MsoNormal><b>Criteria for AES core selection<o:p></o:p></b></p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l2 level1 lfo49;tab-stops:list .5in'>Whether
a vendor has synthesized and used the core in 0.18u and 0.13u technology</li>
<li class=MsoNormal style='mso-list:l2 level1 lfo49;tab-stops:list .5in'>Cost</li>
<li class=MsoNormal style='mso-list:l2 level1 lfo49;tab-stops:list .5in'>Input
and output widths, whether fixed or programmable</li>
<li class=MsoNormal style='mso-list:l2 level1 lfo49;tab-stops:list .5in'>Has
support for CBC or need to do in glue logic</li>
<li class=MsoNormal style='mso-list:l2 level1 lfo49;tab-stops:list .5in'>Throughput
with and without pipelining</li>
<li class=MsoNormal style='mso-list:l2 level1 lfo49;tab-stops:list .5in'>Size
of core (gates)</li>
</ul>
<p class=MsoNormal style='margin-left:.25in'><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><b>Inventory of security software required in BB:<o:p></o:p></b></p>
<p class=MsoNormal>(Prior to run time software involving key generation will be
listed in manufacturing document)</p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l7 level1 lfo52;tab-stops:list .5in'>AES
encryption CBC mode</li>
<li class=MsoNormal style='mso-list:l7 level1 lfo52;tab-stops:list .5in'>MD5
signature checking </li>
<li class=MsoNormal style='mso-list:l7 level1 lfo52;tab-stops:list .5in'>Random
number generation software/driver for hardware</li>
<li class=MsoNormal style='mso-list:l7 level1 lfo52;tab-stops:list .5in'>Public
key software
</li>
</ul>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><b><![if !supportEmptyParas]> <![endif]><o:p></o:p></b></p>
<p class=MsoNormal><b>Secure mode trap context switch operation:<o:p></o:p></b></p>
<p class=MsoNormal>To decide the overhead in context switching to determine
what is a reasonable interval for timer interrupts to secure mode.</p>
<p class=MsoNormal>(refer document BB secure mode operation for details)</p>
<p class=MsoNormal>Entering secure mode:</p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l12 level1 lfo55;tab-stops:list .5in'>Execute
uncached load from secure timer</li>
<li class=MsoNormal style='mso-list:l12 level1 lfo55;tab-stops:list .5in'>Swap
internal SRAM to main memory using PI dma to create space for executing
secure mode operation</li>
<li class=MsoNormal style='mso-list:l12 level1 lfo55;tab-stops:list .5in'>Time
for swapping is about 1usec for 1Kbyte, for entire 32Kbyte SRAM about 32
usec.</li>
</ul>
<p class=MsoNormal>Exiting secure mode:</p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l9 level1 lfo58;tab-stops:list .5in'>Restore
SRAM (same time for swapping)</li>
<li class=MsoNormal style='mso-list:l9 level1 lfo58;tab-stops:list .5in'>flush
Icache and Dcache</li>
<li class=MsoNormal style='mso-list:l9 level1 lfo58;tab-stops:list .5in'>Store
to secure mode register to turn off internal flash access</li>
<li class=MsoNormal style='mso-list:l9 level1 lfo58;tab-stops:list .5in'>Return
to application</li>
</ul>
<p class=MsoNormal><b><![if !supportEmptyParas]> <![endif]><o:p></o:p></b></p>
<p class=MsoNormal><b>AES algorithm issues:<o:p></o:p></b></p>
<p class=MsoNormal>Assuming we will do encryption in software and decryption in
hardware. Just some points to note</p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l0 level1 lfo61;tab-stops:list .5in'>The
Sboxes (256 bytes) for decryption and encryption are different.</li>
<li class=MsoNormal style='mso-list:l0 level1 lfo61;tab-stops:list .5in'>The
results of key expansion 11*16 bytes =176 bytes have to be saved as state.</li>
<li class=MsoNormal style='mso-list:l0 level1 lfo61;tab-stops:list .5in'>The
key expansion computation involves 44*(S-box substitution, rotate, xor
),
the factor in brackets is done on 32 bit words.</li>
<li class=MsoNormal style='mso-list:l0 level1 lfo61;tab-stops:list .5in'>There
is less reason to consider doing that in hardware for computation reasons,
but the space to implement key expansion alone is almost same as if the
whole operation was implemented, in software. The logic is similar, but
data is different.</li>
</ul>
<p class=MsoNormal><b><![if !supportEmptyParas]> <![endif]><o:p></o:p></b></p>
<p class=MsoNormal><b>AES modes:<span style="mso-spacerun: yes"> </span><o:p></o:p></b></p>
<p class=MsoNormal>While encrypting data into flash, it maybe wise to use CBC
mode to randomize the encrypted text. On the other hand, it means reading in
one previous block of cipher-text extra before start of desired block. The
initialization vector could be a random number or timestamp, and need not be
secret. Or optionally we could only use CBC for the boot code data and ECB for
the rest of content. Since the boot code may have predictable code.</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<h1>AES core resources:</h1>
<p class=MsoNormal>Tality</p>
<p class=MsoNormal><a href="http://www.tality.com/ip/aes/aes-flyer.html">http://www.tality.com/ip/aes/aes-flyer.html</a></p>
<p class=MsoNormal>Helion Technology</p>
<p class=MsoNormal><a href="http://www.heliontech.com/core2.htm">http://www.heliontech.com/core2.htm</a></p>
<p class=MsoNormal>Amphion</p>
<p class=MsoNormal><a href="http://www.amphion.com/cs5210.html">http://www.amphion.com/cs5210.html</a></p>
<p class=MsoNormal>Ocean Logic</p>
<p class=MsoNormal><a href="http://www.ocean-logic.com/pub/OL_AES.pdf">http://www.ocean-logic.com/pub/OL_AES.pdf</a></p>
<p class=MsoNormal>Secucore</p>
<p class=MsoNormal><a href="http://www.secucore.com/products.htm">http://www.secucore.com/products.htm</a></p>
<p class=MsoNormal>Cast Inc</p>
<p class=MsoNormal><a href="http://www.cast-inc.com/cores/aes/aes.pdf">http://www.cast-inc.com/cores/aes/aes.pdf</a></p>
<p class=MsoNormal>North Pole Engineering</p>
<p class=MsoNormal><a href="http://209.134.155.72/aescore.htm">http://209.134.155.72/aescore.htm</a></p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal>FPGA: </p>
<p class=MsoNormal><a
href="http://www.altera.com/literature/wp/wp_hcores_rijnfast.pdf">http://www.altera.com/literature/wp/wp_hcores_rijnfast.pdf</a></p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal>Dcrypt</p>
<p class=MsoNormal><a href="http://www.d-crypt.com/">http://www.d-crypt.com</a></p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal>Cryptographic Standards and Validation Program lists:</p>
<p class=MsoNormal><a href="http://csrc.nist.gov/cryptval/">http://csrc.nist.gov/cryptval/</a></p>
<p class=MsoNormal>(look at vendor lists, FIPS140-1 and 140-2 lists)</p>
<p class=MsoNormal><a href="http://csrc.nist.gov/cryptval/140-1/1401val.htm">http://csrc.nist.gov/cryptval/140-1/1401val.htm</a></p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><b>Public key choices:<o:p></o:p></b></p>
<p class=MsoNormal>The public key cryptographic choices are standard RSA-like
PKI or the same equivalent using elliptic curves. The purpose for elliptic
curves is because certificates are order of 10 smaller and some operations are
faster.</p>
<p class=MsoNormal>The operations are:</p>
<ul style='margin-top:0in' type=disc>
<li class=MsoNormal style='mso-list:l14 level1 lfo64;tab-stops:list .5in'>Signature
verification of server on license</li>
<li class=MsoNormal style='mso-list:l14 level1 lfo64;tab-stops:list .5in'>Decryption
of license using private key</li>
<li class=MsoNormal style='mso-list:l14 level1 lfo64;tab-stops:list .5in'>HR
Depot certificate verification?</li>
</ul>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal>These are all not performance critical operations, hence
purely software decisions.</p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
<p class=MsoNormal><![if !supportEmptyParas]> <![endif]><o:p></o:p></p>
</div>
</body>
</html>