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 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237
|
<pre>Network Working Group T. Kunz
Request for Comments: 5698 Fraunhofer SIT
Category: Standards Track S. Okunick
pawisda systems GmbH
U. Pordesch
Fraunhofer Gesellschaft
November 2009
<span class="h1">Data Structure for the Security Suitability</span>
<span class="h1">of Cryptographic Algorithms (DSSC)</span>
Abstract
Since cryptographic algorithms can become weak over the years, it is
necessary to evaluate their security suitability. When signing or
verifying data, or when encrypting or decrypting data, these
evaluations must be considered. This document specifies a data
structure that enables an automated analysis of the security
suitability of a given cryptographic algorithm at a given point of
time, which may be in the past, the present, or the future.
Status of This Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Copyright Notice
Copyright (c) 2009 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the BSD License.
<span class="grey">Kunz, et al. Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
This document may contain material from IETF Documents or IETF
Contributions published or made publicly available before November
10, 2008. The person(s) controlling the copyright in some of this
material may not have granted the IETF Trust the right to allow
modifications of such material outside the IETF Standards Process.
Without obtaining an adequate license from the person(s) controlling
the copyright in such materials, this document may not be modified
outside the IETF Standards Process, and derivative works of it may
not be created outside the IETF Standards Process, except to format
it for publication as an RFC or to translate it into languages other
than English.
<span class="grey">Kunz, et al. Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-4">4</a>
<a href="#section-1.1">1.1</a>. Motivation .................................................<a href="#page-4">4</a>
<a href="#section-1.2">1.2</a>. Terminology ................................................<a href="#page-5">5</a>
<a href="#section-1.2.1">1.2.1</a>. Conventions Used in This Document ...................<a href="#page-5">5</a>
<a href="#section-1.3">1.3</a>. Use Cases ..................................................<a href="#page-5">5</a>
<a href="#section-2">2</a>. Requirements and Assumptions ....................................<a href="#page-5">5</a>
<a href="#section-2.1">2.1</a>. Requirements ...............................................<a href="#page-6">6</a>
<a href="#section-2.2">2.2</a>. Assumptions ................................................<a href="#page-6">6</a>
<a href="#section-3">3</a>. Data Structures .................................................<a href="#page-7">7</a>
<a href="#section-3.1">3.1</a>. SecuritySuitabilityPolicy ..................................<a href="#page-7">7</a>
<a href="#section-3.2">3.2</a>. PolicyName .................................................<a href="#page-8">8</a>
<a href="#section-3.3">3.3</a>. Publisher ..................................................<a href="#page-9">9</a>
<a href="#section-3.4">3.4</a>. PolicyIssueDate ............................................<a href="#page-9">9</a>
<a href="#section-3.5">3.5</a>. NextUpdate .................................................<a href="#page-9">9</a>
<a href="#section-3.6">3.6</a>. Usage ......................................................<a href="#page-9">9</a>
<a href="#section-3.7">3.7</a>. Algorithm ..................................................<a href="#page-9">9</a>
<a href="#section-3.8">3.8</a>. AlgorithmIdentifier .......................................<a href="#page-10">10</a>
<a href="#section-3.9">3.9</a>. Evaluation ................................................<a href="#page-10">10</a>
<a href="#section-3.10">3.10</a>. Parameter ................................................<a href="#page-11">11</a>
<a href="#section-3.11">3.11</a>. Validity .................................................<a href="#page-12">12</a>
<a href="#section-3.12">3.12</a>. Information ..............................................<a href="#page-12">12</a>
<a href="#section-3.13">3.13</a>. Signature ................................................<a href="#page-12">12</a>
<a href="#section-4">4</a>. DSSC Policies ..................................................<a href="#page-13">13</a>
<a href="#section-5">5</a>. Definition of Parameters .......................................<a href="#page-13">13</a>
<a href="#section-6">6</a>. Processing .....................................................<a href="#page-14">14</a>
<a href="#section-6.1">6.1</a>. Inputs ....................................................<a href="#page-14">14</a>
<a href="#section-6.2">6.2</a>. Verify Policy .............................................<a href="#page-14">14</a>
<a href="#section-6.3">6.3</a>. Algorithm Evaluation ......................................<a href="#page-15">15</a>
<a href="#section-6.4">6.4</a>. Evaluation of Parameters ..................................<a href="#page-15">15</a>
<a href="#section-6.5">6.5</a>. Output ....................................................<a href="#page-16">16</a>
<a href="#section-7">7</a>. Security Considerations ........................................<a href="#page-16">16</a>
<a href="#section-8">8</a>. IANA Considerations ............................................<a href="#page-18">18</a>
<a href="#section-9">9</a>. References .....................................................<a href="#page-23">23</a>
<a href="#section-9.1">9.1</a>. Normative References ......................................<a href="#page-23">23</a>
<a href="#section-9.2">9.2</a>. Informative References ....................................<a href="#page-24">24</a>
<a href="#appendix-A">Appendix A</a>. DSSC and ERS .........................................<a href="#page-27">27</a>
A.1. Verification of Evidence Records Using DSSC
(Informative) .............................................<a href="#page-27">27</a>
<a href="#appendix-A.2">A.2</a>. Storing DSSC Policies in Evidence Records (Normative) .....<a href="#page-27">27</a>
<a href="#appendix-B">Appendix B</a>. XML Schema (Normative) ...............................<a href="#page-28">28</a>
<a href="#appendix-C">Appendix C</a>. ASN.1 Module in 1988 Syntax (Informative) ............<a href="#page-30">30</a>
<a href="#appendix-D">Appendix D</a>. ASN.1 Module in 1997 Syntax (Normative) ..............<a href="#page-32">32</a>
<a href="#appendix-E">Appendix E</a>. Example ..............................................<a href="#page-34">34</a>
<span class="grey">Kunz, et al. Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Motivation</span>
Digital signatures can provide data integrity and authentication.
They are based on cryptographic algorithms that are required to have
certain security properties. For example, hash algorithms must be
resistant to collisions, and in case of public key algorithms,
computation of the private key that corresponds to a given public key
must be infeasible. If algorithms lack the required properties,
signatures could be forged, unless they are protected by a strong
cryptographic algorithm.
Cryptographic algorithms that are used in signatures shall be
selected to resist such attacks during their period of use. For
signature keys included in public key certificates, this period of
use is the validity period of the certificate. Cryptographic
algorithms that are used for encryption shall resist such attacks
during the period it is planned to keep the information confidential.
Only very few algorithms satisfy the security requirements. Besides,
because of the increasing performance of computers and progresses in
cryptography, algorithms or their parameters become insecure over the
years. The hash algorithm MD5, for example, is unsuitable today for
many purposes. A digital signature using a "weak" algorithm has no
probative value, unless the "weak" algorithm has been protected by a
strong algorithm before the time it was considered to be weak. Many
kinds of digital signed data (including signed documents, timestamps,
certificates, and revocation lists) are affected, particularly in the
case of long-term archiving. Over long periods of time, it is
assumed that the algorithms used in signatures become insecure.
For this reason, it is important to periodically evaluate an
algorithm's fitness and to consider the results of these evaluations
when creating and verifying signatures, or when maintaining the
validity of signatures made in the past. One result is a projected
validity period for the algorithm, i.e., a prediction of the period
of time during which the algorithm is fit for use. This prediction
can help to detect whether a weak algorithm is used in a signature
and whether that signature has been properly protected in due time by
another signature made using an algorithm that is suitable at the
present point of time. Algorithm evaluations are made by expert
committees. In Germany, the Federal Network Agency annually
publishes evaluations of cryptographic algorithms [<a href="#ref-BNetzAg.2008">BNetzAg.2008</a>].
Examples of other European and international evaluations are
[<a href="#ref-ETSI-TS102176-1-2005">ETSI-TS102176-1-2005</a>] and [<a href="#ref-NIST.800-57-Part1.2006">NIST.800-57-Part1.2006</a>].
<span class="grey">Kunz, et al. Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
These evaluations are published in documents intended to be read by
humans. Therefore, to enable automated processing, it is necessary
to define a data structure that expresses the content of the
evaluations. This standardized data structure can be used for
publication and can be interpreted by signature generation and
verification tools. Algorithm evaluations are pooled in a security
suitability policy. In this document, a data structure for a
security suitability policy is specified. Therefore, the document
provides a framework for expressing evaluations of cryptographic
algorithms. This document does not attempt to catalog the security
properties of cryptographic algorithms. Furthermore, no guidelines
are made about which kind of algorithms shall be evaluated, for
example, security suitability policies may be used to evaluate public
key and hash algorithms, signature schemes, and encryption schemes.
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. Terminology</span>
Algorithm: A cryptographic algorithm, i.e., a public key or hash
algorithm. For public key algorithms, this is the algorithm with
its parameters, if any. Furthermore, the term "algorithm" is used
for cryptographic schemes and for actually padding functions.
Operator: Instance that uses and interprets a policy, e.g., a
signature-verification component.
Policy: An abbreviation for security suitability policy.
Publisher: Instance that publishes the policy containing the
evaluation of algorithms.
Security suitability policy: The evaluation of cryptographic
algorithms with regard to their security in a specific application
area, e.g., signing or verifying data. The evaluation is
published in an electronic format.
Suitable algorithm: An algorithm that is evaluated against a policy
and determined to be valid, i.e., resistant against attacks, at a
particular point of time.
<span class="h4"><a class="selflink" id="section-1.2.1" href="#section-1.2.1">1.2.1</a>. Conventions Used in This Document</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
<span class="grey">Kunz, et al. Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<span class="h3"><a class="selflink" id="section-1.3" href="#section-1.3">1.3</a>. Use Cases</span>
Some use cases for a security suitability policy are presented here.
Long-term archiving: The most important use case is long-term
archiving of signed data. Algorithms or their parameters become
insecure over long periods of time. Therefore, signatures of
archived data and timestamps have to be periodically renewed. A
policy provides information about suitable and threatened
algorithms. Additionally, the policy assists in verifying
archived as well as re-signed documents.
Services: Services may provide information about cryptographic
algorithms. On the basis of a policy, a service is able to
provide the date when an algorithm became insecure or presumably
will become insecure, as well as information regarding which
algorithms are presently valid. Verification tools or long-term
archiving systems can request such services and therefore do not
need to deal with the algorithm security by themselves.
Long-term Archive Services (LTA) as defined in [<a href="./rfc4810" title=""Long-Term Archive Service Requirements"">RFC4810</a>] may use
the policy for signature renewal.
Signing and verifying: When signing documents or certificates, it
must be assured that the algorithms used for signing or verifying
are suitable. Accordingly, when verifying Cryptographic Message
Syntax (CMS) [<a href="./rfc5652" title=""Cryptographic Message Syntax (CMS)"">RFC5652</a>] or XML signatures ([<a href="./rfc3275" title=""(Extensible Markup Language) XML-Signature Syntax and Processing"">RFC3275</a>],
[<a href="#ref-ETSI-TS101903">ETSI-TS101903</a>]), not only the validity of the certificates but
also the validity of all involved algorithms may be checked.
Re-encryption: A security suitability policy can also be used to
decide if encrypted documents must be re-encrypted because the
encryption algorithm is no longer secure.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Requirements and Assumptions</span>
<a href="#section-2.1">Section 2.1</a> describes general requirements for a data structure
containing the security suitability of algorithms. In <a href="#section-2.2">Section 2.2</a>,
assumptions are specified concerning both the design and the usage of
the data structure.
A policy contains a list of algorithms that have been evaluated by a
publisher. An algorithm evaluation is described by its identifier,
security constraints, and validity period. By these constraints, the
requirements for algorithm properties must be defined, e.g., a public
key algorithm is evaluated on the basis of its parameters.
<span class="grey">Kunz, et al. Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Requirements</span>
Automatic interpretation: The data structure of the policy must
allow automated evaluation of the security suitability of an
algorithm.
Flexibility: The data structure must be flexible enough to support
new algorithms. Future policy publications may include
evaluations of algorithms that are currently unknown. It must be
possible to add new algorithms with the corresponding security
constraints in the data structure. Additionally, the data
structure must be independent of the intended use, e.g.,
encryption, signing, verifying, and signature renewing. Thus, the
data structure is usable in every use case.
Source authentication: Policies may be published by different
institutions, e.g., on the national or European Union (EU) level,
whereas one policy needs not to be in agreement with the other
one. Furthermore, organizations may undertake their own
evaluations for internal purposes. For this reason a policy must
be attributable to its publisher.
Integrity and authenticity: It must be possible to assure the
integrity and authenticity of a published security suitability
policy. Additionally, the date of issue must be identifiable.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Assumptions</span>
It is assumed that a policy contains the evaluations of all currently
known algorithms, including the expired ones.
An algorithm is suitable at a time of interest if it is contained in
the current policy and the time of interest is within the validity
period. Additionally, if the algorithm has any parameters, these
parameters must meet the requirements defined in the security
constraints.
If an algorithm appears in a policy for the first time, it may be
assumed that the algorithm has already been suitable in the past.
Generally, algorithms are used in practice prior to evaluation.
To avoid inconsistencies, multiple instances of the same algorithm
are prohibited. The publisher must take care to prevent conflicts
within a policy.
Assertions made in the policy are suitable at least until the next
policy is published.
<span class="grey">Kunz, et al. Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
Publishers may extend the lifetime of an algorithm prior to reaching
the end of the algorithm's validity period by publishing a revised
policy. Publishers should not resurrect algorithms that are expired
at the time a revised policy is published.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Data Structures</span>
This section describes the syntax of a security suitability policy
defined as an XML schema [<a href="#ref-W3C.REC-xmlschema-1-20041028">W3C.REC-xmlschema-1-20041028</a>]. ASN.1
modules are defined in <a href="#appendix-C">Appendix C</a> and <a href="#appendix-D">Appendix D</a>. The schema uses
the following XML namespace [<a href="#ref-W3C.REC-xml-names-20060816">W3C.REC-xml-names-20060816</a>]:
urn:ietf:params:xml:ns:dssc
Within this document, the prefix "dssc" is used for this namespace.
The schema starts with the following schema definition:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:dssc="urn:ietf:params:xml:ns:dssc"
xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
targetNamespace="urn:ietf:params:xml:ns:dssc"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
<xs:import namespace="http://www.w3.org/XML/1998/namespace"
schemaLocation="http://www.w3.org/2001/xml.xsd"/>
<xs:import namespace="http://www.w3.org/2000/09/xmldsig#"
schemaLocation="xmldsig-core-schema.xsd"/>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. SecuritySuitabilityPolicy</span>
The SecuritySuitabilityPolicy element is the root element of a
policy. It has an optional id attribute, which MUST be used as a
reference when signing the policy (<a href="#section-3.13">Section 3.13</a>). The optional lang
attribute defines the language according to [<a href="./rfc5646" title=""Tags for Identifying Languages"">RFC5646</a>]. The language
is applied to all human-readable text within the policy. If the lang
attribute is omitted, the default language is English ("en"). The
element is defined by the following schema:
<span class="grey">Kunz, et al. Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<xs:element name="SecuritySuitabilityPolicy"
type="dssc:SecuritySuitabilityPolicyType"/>
<xs:complexType name="SecuritySuitabilityPolicyType">
<xs:sequence>
<xs:element ref="dssc:PolicyName"/>
<xs:element ref="dssc:Publisher"/>
<xs:element name="PolicyIssueDate" type="xs:dateTime"/>
<xs:element name="NextUpdate" type="xs:dateTime" minOccurs="0"/>
<xs:element name="Usage" type="xs:string" minOccurs="0"/>
<xs:element ref="dssc:Algorithm" maxOccurs="unbounded"/>
<xs:element ref="ds:Signature" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="version" type="xs:string" default="1"/>
<xs:attribute name="lang" default="en"/>
<xs:attribute name="id" type="xs:ID"/>
</xs:complexType>
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. PolicyName</span>
The PolicyName element contains an arbitrary name for the policy.
The optional elements Object Identifier (OID) and Uniform Resource
Identifier (URI) MAY be used for the identification of the policy.
OIDs MUST be expressed in the dot notation.
<xs:element name="PolicyName" type="dssc:PolicyNameType"/>
<xs:complexType name="PolicyNameType">
<xs:sequence>
<xs:element ref="dssc:Name"/>
<xs:element ref="dssc:ObjectIdentifier" minOccurs="0"/>
<xs:element ref="dssc:URI" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:element name="Name" type="xs:string"/>
<xs:element name="ObjectIdentifier">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="(\d+\.)+\d+"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="URI" type="xs:anyURI"/>
<span class="grey">Kunz, et al. Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. Publisher</span>
The Publisher element contains information about the publisher of the
policy. It is composed of the name (e.g., name of institution), an
optional address, and an optional URI. The Address element contains
arbitrary free-format text not intended for automatic processing.
<xs:element name="Publisher" type="dssc:PublisherType"/>
<xs:complexType name="PublisherType">
<xs:sequence>
<xs:element ref="dssc:Name"/>
<xs:element name="Address" type="xs:string" minOccurs="0"/>
<xs:element ref="dssc:URI" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. PolicyIssueDate</span>
The PolicyIssueDate element indicates the point of time when the
policy was issued.
<span class="h3"><a class="selflink" id="section-3.5" href="#section-3.5">3.5</a>. NextUpdate</span>
The optional NextUpdate element MAY be used to indicate when the next
policy will be issued.
<span class="h3"><a class="selflink" id="section-3.6" href="#section-3.6">3.6</a>. Usage</span>
The optional Usage element determines the intended use of the policy
(e.g., certificate validation, signing and verifying documents). The
element contains free-format text intended only for human
readability.
<span class="h3"><a class="selflink" id="section-3.7" href="#section-3.7">3.7</a>. Algorithm</span>
A security suitability policy MUST contain at least one Algorithm
element. An algorithm is identified by an AlgorithmIdentifier
element. Additionally, the Algorithm element contains all
evaluations of the specific cryptographic algorithm. More than one
evaluation may be necessary if the evaluation depends on the
parameter constraints. The optional Information element MAY be used
to provide additional information like references on algorithm
specifications. In order to give the option to extend the Algorithm
element, it additionally contains a wildcard. The Algorithm element
is defined by the following schema:
<span class="grey">Kunz, et al. Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<xs:element name="Algorithm" type="dssc:AlgorithmType"/>
<xs:complexType name="AlgorithmType">
<xs:sequence>
<xs:element ref="dssc:AlgorithmIdentifier"/>
<xs:element ref="dssc:Evaluation" maxOccurs="unbounded"/>
<xs:element ref="dssc:Information" minOccurs="0"/>
<xs:any namespace="##other" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<span class="h3"><a class="selflink" id="section-3.8" href="#section-3.8">3.8</a>. AlgorithmIdentifier</span>
The AlgorithmIdentifier element is used to identify a cryptographic
algorithm. It consists of the algorithm name, at least one OID, and
optional URIs. The algorithm name is not intended to be parsed by
automatic processes. It is only intended to be read by humans. The
OID MUST be expressed in dot notation (e.g., "1.3.14.3.2.26"). The
element is defined as follows:
<xs:element name="AlgorithmIdentifier"
type="dssc:AlgorithmIdentifierType"/>
<xs:complexType name="AlgorithmIdentifierType">
<xs:sequence>
<xs:element ref="dssc:Name"/>
<xs:element ref="dssc:ObjectIdentifier" maxOccurs="unbounded"/>
<xs:element ref="dssc:URI" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<span class="h3"><a class="selflink" id="section-3.9" href="#section-3.9">3.9</a>. Evaluation</span>
The Evaluation element contains the evaluation of one cryptographic
algorithm in dependence of its parameter constraints. For example,
the suitability of the RSA algorithm depends on the modulus length
(RSA with a modulus length of 1024 may have another suitability
period as RSA with a modulus length of 2048). Current hash
algorithms like SHA-1 or RIPEMD-160 do not have any parameters.
Therefore, the Parameter element is optional. The suitability of the
algorithm is expressed by a validity period, which is defined by the
Validity element. An optional wildcard MAY be used to extend the
Evaluation element.
<span class="grey">Kunz, et al. Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<xs:element name="Evaluation" type="dssc:EvaluationType"/>
<xs:complexType name="EvaluationType">
<xs:sequence>
<xs:element ref="dssc:Parameter" minOccurs="0"
maxOccurs="unbounded"/>
<xs:element ref="dssc:Validity"/>
<xs:any namespace="##other" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<span class="h3"><a class="selflink" id="section-3.10" href="#section-3.10">3.10</a>. Parameter</span>
The Parameter element is used to express constraints on algorithm-
specific parameters.
The Parameter element has a name attribute, which holds the name of
the parameter (e.g., "moduluslength" for RSA [<a href="./rfc3447" title=""Public-Key Cryptography Standards (PKCS) #1: RSA Cryptography Specifications Version 2.1"">RFC3447</a>]). <a href="#section-5">Section 5</a>
defines parameter names for currently known public key algorithms;
these parameter names SHOULD be used. For the actual parameter, a
range of values or an exact value may be defined. These constraints
are expressed by the following elements:
Min: The Min element defines the minimum value of the parameter.
That means values equal or greater than the given value meet the
requirements.
Max: The Max element defines the maximum value the parameter may
take.
At least one of both elements MUST be set to define a range of
values. A range MAY also be specified by a combination of both
elements, whereas the value of the Min element MUST be less than or
equal to the value of the Max element. The parameter may have any
value within the defined range, including the minimum and maximum
values. An exact value is expressed by using the same value in both
the Min and the Max element.
These constraints are sufficient for all current algorithms. If
future algorithms need constraints that cannot be expressed by the
elements above, an arbitrary XML structure MAY be inserted that meets
the new constraints. For this reason, the Parameter element contains
a wildcard. A parameter MUST contain at least one constraint. The
schema for the Parameter element is as follows:
<span class="grey">Kunz, et al. Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<xs:element name="Parameter" type="dssc:ParameterType"/>
<xs:complexType name="ParameterType">
<xs:sequence>
<xs:element name="Min" type="xs:int" minOccurs="0"/>
<xs:element name="Max" type="xs:int" minOccurs="0"/>
<xs:any namespace="##other" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="required"/>
</xs:complexType>
<span class="h3"><a class="selflink" id="section-3.11" href="#section-3.11">3.11</a>. Validity</span>
The Validity element is used to define the period of the (predicted)
suitability of the algorithm. It is composed of an optional start
date and an optional end date. Defining no end date means the
algorithm has an open-end validity. Of course, this may be
restricted by a future policy that sets an end date for the
algorithm. If the end of the validity period is in the past, the
algorithm was suitable until that end date. The element is defined
by the following schema:
<xs:element name="Validity" type="dssc:ValidityType"/>
<xs:complexType name="ValidityType">
<xs:sequence>
<xs:element name="Start" type="xs:date" minOccurs="0"/>
<xs:element name="End" type="xs:date" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<span class="h3"><a class="selflink" id="section-3.12" href="#section-3.12">3.12</a>. Information</span>
The Information element MAY be used to give additional textual
information about the algorithm or the evaluation, e.g., references
on algorithm specifications. The element is defined as follows:
<xs:element name="Information" type="dssc:InformationType"/>
<xs:complexType name="InformationType">
<xs:sequence>
<xs:element name="Text" type="xs:string" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<span class="grey">Kunz, et al. Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<span class="h3"><a class="selflink" id="section-3.13" href="#section-3.13">3.13</a>. Signature</span>
The optional Signature element MAY be used to guarantee the integrity
and authenticity of the policy. It is an XML signature specified in
[<a href="./rfc3275" title=""(Extensible Markup Language) XML-Signature Syntax and Processing"">RFC3275</a>]. The signature MUST relate to the
SecuritySuitabilityPolicy element. If the Signature element is set,
the SecuritySuitabilityPolicy element MUST have the optional id
attribute. This attribute MUST be used to reference the
SecuritySuitabilityPolicy element within the Signature element.
Since it is an enveloped signature, the signature MUST use the
transformation algorithm identified by the following URI:
<a href="http://www.w3.org/2000/09/xmldsig#enveloped-signature">http://www.w3.org/2000/09/xmldsig#enveloped-signature</a>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. DSSC Policies</span>
DSSC policies MUST be expressed either in XML or ASN.1. However, in
order to reach interoperability, DSSC policies SHOULD be published in
both XML and ASN.1.
In the case of XML, a DSSC policy is an XML document that MUST be
well-formed and SHOULD be valid. XML-encoded DSSC policies MUST be
based on XML 1.0 [<a href="#ref-W3C.REC-xml-20081126">W3C.REC-xml-20081126</a>] and MUST be encoded using
UTF-8 [<a href="./rfc3629" title=""UTF-8, a transformation format of ISO 10646"">RFC3629</a>]. This specification makes use of XML namespaces
[<a href="#ref-W3C.REC-xml-names-20060816">W3C.REC-xml-names-20060816</a>] for identifying DSSC policies. The
namespace URI for elements defined by this specification is a URN
[<a href="./rfc2141" title=""URN Syntax"">RFC2141</a>] using the namespace prefix "dssc". This URN is:
urn:ietf:params:xml:ns:dssc
XML-encoded DSSC policies are identified with the MIME type
"application/dssc+xml" and are instances of the XML schema
[<a href="#ref-W3C.REC-xmlschema-1-20041028">W3C.REC-xmlschema-1-20041028</a>] defined in <a href="#appendix-B">Appendix B</a>.
A file containing a DSSC policy in ASN.1 representation (for
specification of ASN.1 refer to [<a href="#ref-CCITT.x208.1988">CCITT.x208.1988</a>], [<a href="#ref-CCITT.x209.1988">CCITT.x209.1988</a>],
[<a href="#ref-CCITT.x680.2002">CCITT.x680.2002</a>] and [<a href="#ref-CCITT.x690.2002">CCITT.x690.2002</a>]) MUST contain only the DER
encoding of one DSSC policy, i.e., there MUST NOT be extraneous
header or trailer information in the file. ASN.1-based DSSC policies
are identified with the MIME type "application/dssc+der".
Appropriate ASN.1 modules are defined in Appendices C (1988-ASN.1
syntax) and D (1997-ASN.1 syntax).
<span class="grey">Kunz, et al. Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Definition of Parameters</span>
This section defines the parameter names for the currently known
public key algorithms. The following parameters also refer to
cryptographic schemes based on these public key algorithms (e.g., the
PKCS#1 v1.5 signature scheme SHA-256 with RSA [<a href="./rfc3447" title=""Public-Key Cryptography Standards (PKCS) #1: RSA Cryptography Specifications Version 2.1"">RFC3447</a>]).
The parameter of RSA [<a href="./rfc3447" title=""Public-Key Cryptography Standards (PKCS) #1: RSA Cryptography Specifications Version 2.1"">RFC3447</a>] SHOULD be named "moduluslength".
The parameters for the Digital Signature Algorithm (DSA)
[<a href="#ref-FIPS186-2">FIPS186-2</a>] SHOULD be "plength" and "qlength".
These parameter names have been registered by IANA (see <a href="#section-8">Section 8</a>).
It may be necessary to register further algorithms not given in this
section (in particular, future algorithms). The process for
registering parameter names of further algorithms is described in
<a href="#section-8">Section 8</a>. Publishers of policies SHOULD use these parameter names
so that the correct interpretation is guaranteed.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Processing</span>
Evaluation of an algorithm's security suitability is described in
three parts: verification of the policy, determination of algorithm
validity, and evaluation of algorithm parameters, if any.
In the following sections, a process is described
o to determine if an algorithm was suitable at a particular point of
time, and
o to determine until what time an algorithm was or will be suitable.
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Inputs</span>
To determine the security suitability of an algorithm, the following
information is required:
o Policy
o Current time
o Algorithm identifier and parameter constraints (if associated)
o Time of interest (optional). Providing no time of interest means
determination of the validity end date of the algorithm.
<span class="grey">Kunz, et al. Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Verify Policy</span>
The signature on the policy SHOULD be verified and a certification
path from the policy signer's certificate to a current trust anchor
SHOULD be constructed and validated [<a href="./rfc5280" title=""Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">RFC5280</a>]. The algorithms used
to verify the digital signature and validate the certification path
MUST be suitable per the contents of the policy being verified. If
signature verification fails, certification path validation fails or
an unsuitable algorithm is required to perform these checks, then the
policy MUST be rejected.
The nextUpdate time in the policy MUST be either greater than the
current time or absent. If the nextUpdate time is less than the
current time, the policy MUST be rejected.
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. Algorithm Evaluation</span>
To determine the validity period of an algorithm, locate the
Algorithm element in the policy that corresponds to the algorithm
identifier provided as input. The Algorithm element is located by
comparing the OID in the element to the OID included in the algorithm
identifier provided as input.
If no matching Algorithm element is found, then the algorithm is
unknown.
If the time of interest was provided as input, the validity of each
Evaluation element MUST be checked in order to determine if the
algorithm was suitable at the time of interest. For each Evaluation
element:
o Confirm the Start time is either less than the time of interest or
absent. Discard the entry if the Start time is present and
greater than the time of interest.
o Confirm the End time is either greater than the time of interest
or absent. Discard the entry if the End time is present and less
than the time of interest.
If all Evaluation elements were rejected, the algorithm is not
suitable according to the policy.
Any entries not rejected will be used for the evaluation of the
parameters, if any.
<span class="grey">Kunz, et al. Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. Evaluation of Parameters</span>
Any necessary parameters of the entries not rejected MUST be
evaluated within the context of the type and usage of the algorithm.
Details of parameter evaluation are defined on a per-algorithm basis.
To evaluate the parameters, the Parameter elements of each Evaluation
element that has not been rejected in the process described in
<a href="#section-6.3">Section 6.3</a> MUST be checked. For each Parameter element:
o Confirm that the parameter was provided as input. Discard the
Evaluation element if the parameter does not match to any of the
parameters provided as input.
o If the Parameter element has a Min element, confirm that the
parameter value is less than or equal to the corresponding
parameter provided as input. Discard the Evaluation element if
the parameter value does not meet the constraint.
o If the Parameter element has a Max element, confirm that the
parameter value is greater than or equal to the corresponding
parameter provided as input. Discard the Evaluation element if
the parameter value does not meet the constraint.
o If the Parameter has another constraint, confirm that the value of
the corresponding parameter provided as input meets this
constraint. If it does not or if the constraint is unrecognized,
discard the Evaluation element.
If all Evaluation elements were rejected, the algorithm is not
suitable according to the policy.
Any entries not rejected will be provided as output.
<span class="h3"><a class="selflink" id="section-6.5" href="#section-6.5">6.5</a>. Output</span>
If the algorithm is not in the policy, return an error "algorithm
unknown".
If no time of interest was provided as input, return the maximum End
time of the Evaluation elements that were not discarded. If at least
one End time of these Evaluation elements is absent, return
"algorithm has an indefinite End time".
Otherwise, if the algorithm is not suitable relative to the time of
interest, return an error "algorithm unsuitable".
<span class="grey">Kunz, et al. Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
If the algorithm is suitable relative to the time of interest, return
the Evaluation elements that were not discarded.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Security Considerations</span>
The policy for an algorithm's security suitability has a great impact
on the quality of the results of signature generation and
verification operations. If an algorithm is incorrectly evaluated
against a policy, signatures with a low probative force could be
created or verification results could be incorrect. The following
security considerations have been identified:
1. Publishers MUST ensure unauthorized manipulation of any security
suitability is not possible prior to a policy being signed and
published. There is no mechanism provided to revoke a policy
after publication. Since the algorithm evaluations change
infrequently, the lifespan of a policy should be carefully
considered prior to publication.
2. Operators SHOULD only accept policies issued by a trusted
publisher. Furthermore, the validity of the certificate used to
sign the policy SHOULD be verifiable by Certificate Revocation
List (CRL) [<a href="./rfc5280" title=""Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">RFC5280</a>] or Online Certificate Status Protocol (OCSP)
[<a href="./rfc2560" title=""X.509 Internet Public Key Infrastructure Online Certificate Status Protocol - OCSP"">RFC2560</a>]. The certificate used to sign the policy SHOULD be
revoked if the algorithms used in this certificate are no longer
suitable. It MUST NOT be possible to alter or replace a policy
once accepted by an operator.
3. Operators SHOULD periodically check to see if a new policy has
been published to avoid using obsolete policy information. For
publishers, it is suggested not to omit the NextUpdate element in
order to give operators a hint regarding when the next policy
will be published.
4. When signing a policy, algorithms that are suitable according to
this policy SHOULD be used.
5. The processing rule described in <a href="#section-6">Section 6</a> is about one
cryptographic algorithm independent of the use case. Depending
upon the use case, an algorithm that is no longer suitable at the
time of interest, does not necessarily mean that the data
structure where it is used is no longer secure. For example, a
signature has been made with an RSA signer's key of 1024 bits.
This signature is timestamped with a timestamp token that uses an
RSA key of 2048 bits, before an RSA key size of 1024 bits will be
broken. The fact that the signature key of 1024 bits is no
longer suitable at the time of interest does not mean that the
<span class="grey">Kunz, et al. Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
whole data structure is no longer secure, if an RSA key size of
2048 bits is still suitable at the time of interest.
6. In addition to the key size considerations, other considerations
must be applied, like whether a timestamp token has been provided
by a trusted authority. This means that the simple use of a
suitability policy is not the single element to consider when
evaluating the security of a complex data structure that uses
several cryptographic algorithms.
7. The policies described in this document are suitable to evaluate
basic cryptographic algorithms, like public key or hash
algorithms, as well as cryptographic schemes (e.g., the PKCS#1
v1.5 signature schemes [<a href="./rfc3447" title=""Public-Key Cryptography Standards (PKCS) #1: RSA Cryptography Specifications Version 2.1"">RFC3447</a>]). But it MUST be kept in mind
that a basic cryptographic algorithm that is suitable according
to the policy does not necessarily mean that any cryptographic
schemes based on this algorithm are also secure. For example, a
signature scheme based on RSA must not necessarily be secure if
RSA is suitable. In case of a complete signature verification,
including validation of the certificate path, various algorithms
have to be checked against the policy (i.e., signature schemes of
signed data objects and revocation information, public key
algorithms of the involved certificates, etc.). Thus, a policy
SHOULD contain evaluations of public key and hash algorithms as
well as of signature schemes.
8. Re-encrypting documents that were originally encrypted using an
algorithm that is no longer suitable will not protect the
semantics of the document if the document has been intercepted.
However, for documents stored in an encrypted form, re-encryption
must be considered, unless the document has lost its original
value.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. IANA Considerations</span>
This document defines the XML namespace "urn:ietf:params:xml:ns:dssc"
according to the guidelines in [<a href="./rfc3688" title=""The IETF XML Registry"">RFC3688</a>]. This namespace has been
registered in the IANA XML Registry.
This document defines an XML schema (see <a href="#appendix-B">Appendix B</a>) according to the
guidelines in [<a href="./rfc3688" title=""The IETF XML Registry"">RFC3688</a>]. This XML schema has been registered in the
IANA XML Registry and can be identified with the URN
"urn:ietf:params:xml:schema:dssc".
This document defines the MIME type "application/dssc+xml". This
MIME type has been registered by IANA under "MIME Media Types"
according to the procedures of [<a href="./rfc4288" title=""Media Type Specifications and Registration Procedures"">RFC4288</a>].
<span class="grey">Kunz, et al. Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
Type name: application
Subtype name: dssc+xml
Required parameters: none
Optional parameters: "charset" as specified for "application/xml"
in [<a href="./rfc3023" title=""XML Media Types"">RFC3023</a>].
Encoding considerations: Same as specified for "application/xml"
in [<a href="./rfc3023" title=""XML Media Types"">RFC3023</a>].
Security considerations: Same as specified for "application/xml"
in <a href="./rfc3023#section-10">Section 10 of [RFC3023]</a>. For further security considerations,
see <a href="#section-7">Section 7</a> of this document.
Interoperability considerations: Same as specified for
"application/xml" in [<a href="./rfc3023" title=""XML Media Types"">RFC3023</a>].
Published specification: This document.
Applications that use this media: Applications for long-term
archiving of signed data, applications for signing data /
verifying signed data, and applications for encrypting /
decrypting data.
Additional information:
Magic number(s): none
File extension(s): .xdssc
Macintosh file type code: "TEXT"
Object Identifiers: none
Person to contact for further information: Thomas Kunz
(thomas.kunz@sit.fraunhofer.de)
Intended usage: COMMON
Restrictions on usage: none
Author/Change controller: IETF
This document defines the MIME type "application/dssc+der". This
MIME type has been registered by IANA under "MIME Media Types"
according to the procedures of [<a href="./rfc4288" title=""Media Type Specifications and Registration Procedures"">RFC4288</a>].
<span class="grey">Kunz, et al. Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
Type name: application
Subtype name: dssc+der
Required parameters: none
Optional parameters: none
Encoding considerations: binary
Security considerations: See <a href="#section-7">Section 7</a> of this document.
Interoperability considerations: none
Published specification: This document.
Applications that use this media: Applications for long-term
archiving of signed data, applications for signing data /
verifying signed data, and applications for encrypting /
decrypting data.
Additional information:
Magic number(s): none
File extension(s): .dssc
Macintosh file type code: none
Object Identifiers: none
Person to contact for further information: Thomas Kunz
(thomas.kunz@sit.fraunhofer.de)
Intended usage: COMMON
Restrictions on usage: none
Author/Change controller: IETF
This specification creates a new IANA registry entitled "Data
Structure for the Security Suitability of Cryptographic Algorithms
(DSSC)". This registry contains two sub-registries entitled
"Parameter Definitions" and "Cryptographic Algorithms". The policy
for future assignments to the sub-registry "Parameter Definitions" is
"RFC Required".
<span class="grey">Kunz, et al. Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
The initial values for the "Parameter Definitions" sub-registry are:
Value Description Reference
-------------- ------------------------------- ------------------
moduluslength Parameter for RSA <a href="./rfc5698">RFC 5698</a>
(integer value)
plength Parameter for DSA <a href="./rfc5698">RFC 5698</a>
(integer value, used together
with parameter "qlength")
qlength Parameter for DSA <a href="./rfc5698">RFC 5698</a>
(integer value, used together
with parameter "plength")
The sub-registry "Cryptographic Algorithms" contains textual names as
well as Object Identifiers (OIDs) and Uniform Resource Identifiers
(URIs) of cryptographic algorithms. It serves as assistance when
creating a new policy. The policy for future assignments is "First
Come First Served". When registering a new algorithm, the following
information MUST be provided:
o The textual name of the algorithm.
o The OID of the algorithm.
o A reference to a publicly available specification that defines the
algorithm and its identifiers.
Optionally, a URI MAY be provided if possible.
The initial values for the "Cryptographic Algorithms" sub-registry
are:
<span class="grey">Kunz, et al. Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
Name OID / URI Reference
----------------------- --------------------------------- ----------
rsaEncryption 1.2.840.113549.1.1.1 [<a href="./rfc3447" title=""Public-Key Cryptography Standards (PKCS) #1: RSA Cryptography Specifications Version 2.1"">RFC3447</a>]
dsa 1.2.840.10040.4.1 [<a href="./rfc3279" title=""Algorithms and Identifiers for the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">RFC3279</a>]
md2 1.2.840.113549.2.2 [<a href="./rfc3279" title=""Algorithms and Identifiers for the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">RFC3279</a>]
md5 1.2.840.113549.2.5 [<a href="./rfc3279" title=""Algorithms and Identifiers for the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">RFC3279</a>]
<a href="http://www.w3.org/2001/04/xmldsig-more#md5">http://www.w3.org/2001/04/xmldsig-more#md5</a> [<a href="./rfc4051" title=""Additional XML Security Uniform Resource Identifiers (URIs)"">RFC4051</a>]
sha-1 1.3.14.3.2.26 [<a href="./rfc3279" title=""Algorithms and Identifiers for the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">RFC3279</a>]
<a href="http://www.w3.org/2000/09/xmldsig#sha1">http://www.w3.org/2000/09/xmldsig#sha1</a> [<a href="./rfc3275" title=""(Extensible Markup Language) XML-Signature Syntax and Processing"">RFC3275</a>]
sha-224 2.16.840.1.101.3.4.2.4 [<a href="./rfc4055" title=""Additional Algorithms and Identifiers for RSA Cryptography for use in the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">RFC4055</a>]
<a href="http://www.w3.org/2001/04/xmldsig-more#sha224">http://www.w3.org/2001/04/xmldsig-more#sha224</a> [<a href="./rfc4051" title=""Additional XML Security Uniform Resource Identifiers (URIs)"">RFC4051</a>]
sha-256 2.16.840.1.101.3.4.2.1 [<a href="./rfc4055" title=""Additional Algorithms and Identifiers for RSA Cryptography for use in the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">RFC4055</a>]
sha-384 2.16.840.1.101.3.4.2.2 [<a href="./rfc4055" title=""Additional Algorithms and Identifiers for RSA Cryptography for use in the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">RFC4055</a>]
<a href="http://www.w3.org/2001/04/xmldsig-more#sha384">http://www.w3.org/2001/04/xmldsig-more#sha384</a> [<a href="./rfc4051" title=""Additional XML Security Uniform Resource Identifiers (URIs)"">RFC4051</a>]
sha-512 2.16.840.1.101.3.4.2.3 [<a href="./rfc4055" title=""Additional Algorithms and Identifiers for RSA Cryptography for use in the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">RFC4055</a>]
md2WithRSAEncryption 1.2.840.113549.1.1.2 [<a href="./rfc3443" title=""Time To Live (TTL) Processing in Multi-Protocol Label Switching (MPLS) Networks"">RFC3443</a>]
md5WithRSAEncryption 1.2.840.113549.1.1.4 [<a href="./rfc3443" title=""Time To Live (TTL) Processing in Multi-Protocol Label Switching (MPLS) Networks"">RFC3443</a>]
<a href="http://www.w3.org/2001/04/xmldsig-more#rsa-md5">http://www.w3.org/2001/04/xmldsig-more#rsa-md5</a> [<a href="./rfc4051" title=""Additional XML Security Uniform Resource Identifiers (URIs)"">RFC4051</a>]
sha1WithRSAEncryption 1.2.840.113549.1.1.5 [<a href="./rfc3443" title=""Time To Live (TTL) Processing in Multi-Protocol Label Switching (MPLS) Networks"">RFC3443</a>]
<a href="http://www.w3.org/2000/09/xmldsig#rsa-sha1">http://www.w3.org/2000/09/xmldsig#rsa-sha1</a> [<a href="./rfc3275" title=""(Extensible Markup Language) XML-Signature Syntax and Processing"">RFC3275</a>]
sha256WithRSAEncryption 1.2.840.113549.1.1.11 [<a href="./rfc3443" title=""Time To Live (TTL) Processing in Multi-Protocol Label Switching (MPLS) Networks"">RFC3443</a>]
<a href="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256">http://www.w3.org/2001/04/xmldsig-more#rsa-sha256</a> [<a href="./rfc4051" title=""Additional XML Security Uniform Resource Identifiers (URIs)"">RFC4051</a>]
sha384WithRSAEncryption 1.2.840.113549.1.1.12 [<a href="./rfc3443" title=""Time To Live (TTL) Processing in Multi-Protocol Label Switching (MPLS) Networks"">RFC3443</a>]
<a href="http://www.w3.org/2001/04/xmldsig-more#rsa-sha384">http://www.w3.org/2001/04/xmldsig-more#rsa-sha384</a> [<a href="./rfc4051" title=""Additional XML Security Uniform Resource Identifiers (URIs)"">RFC4051</a>]
sha512WithRSAEncryption 1.2.840.113549.1.1.13 [<a href="./rfc3443" title=""Time To Live (TTL) Processing in Multi-Protocol Label Switching (MPLS) Networks"">RFC3443</a>]
<a href="http://www.w3.org/2001/04/xmldsig-more#rsa-sha512">http://www.w3.org/2001/04/xmldsig-more#rsa-sha512</a> [<a href="./rfc4051" title=""Additional XML Security Uniform Resource Identifiers (URIs)"">RFC4051</a>]
sha1WithDSA 1.2.840.10040.4.3 [<a href="./rfc3279" title=""Algorithms and Identifiers for the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">RFC3279</a>]
<a href="http://www.w3.org/2000/09/xmldsig#dsa-sha1">http://www.w3.org/2000/09/xmldsig#dsa-sha1</a> [<a href="./rfc3275" title=""(Extensible Markup Language) XML-Signature Syntax and Processing"">RFC3275</a>]
<span class="grey">Kunz, et al. Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. References</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. Normative References</span>
[<a id="ref-CCITT.x680.2002">CCITT.x680.2002</a>]
International Telephone and Telegraph Consultative
Committee, "Abstract Syntax Notation One (ASN.1):
Specification of basic notation", CCITT Recommendation
X.680, July 2002.
[<a id="ref-CCITT.x690.2002">CCITT.x690.2002</a>]
International Telephone and Telegraph Consultative
Committee, "AASN.1 encoding rules: Specification of basic
encoding Rules (BER), Canonical encoding rules (CER) and
Distinguished encoding rules (DER)", CCITT Recommendation
X.690, July 2002.
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
[<a id="ref-RFC2141">RFC2141</a>] Moats, R., "URN Syntax", <a href="./rfc2141">RFC 2141</a>, May 1997.
[<a id="ref-RFC2560">RFC2560</a>] Myers, M., Ankney, R., Malpani, A., Galperin, S., and C.
Adams, "X.509 Internet Public Key Infrastructure Online
Certificate Status Protocol - OCSP", <a href="./rfc2560">RFC 2560</a>, June 1999.
[<a id="ref-RFC3023">RFC3023</a>] Murata, M., St. Laurent, S., and D. Kohn, "XML Media
Types", <a href="./rfc3023">RFC 3023</a>, January 2001.
[<a id="ref-RFC3275">RFC3275</a>] Eastlake, D., Reagle, J., and D. Solo, "(Extensible Markup
Language) XML-Signature Syntax and Processing", <a href="./rfc3275">RFC 3275</a>,
March 2002.
[<a id="ref-RFC3629">RFC3629</a>] Yergeau, F., "UTF-8, a transformation format of ISO
10646", STD 63, <a href="./rfc3629">RFC 3629</a>, November 2003.
[<a id="ref-RFC3688">RFC3688</a>] Mealling, M., "The IETF XML Registry", <a href="https://www.rfc-editor.org/bcp/bcp81">BCP 81</a>, <a href="./rfc3688">RFC 3688</a>,
January 2004.
[<a id="ref-RFC4288">RFC4288</a>] Freed, N. and J. Klensin, "Media Type Specifications and
Registration Procedures", <a href="https://www.rfc-editor.org/bcp/bcp13">BCP 13</a>, <a href="./rfc4288">RFC 4288</a>, December 2005.
[<a id="ref-RFC4998">RFC4998</a>] Gondrom, T., Brandner, R., and U. Pordesch, "Evidence
Record Syntax (ERS)", <a href="./rfc4998">RFC 4998</a>, August 2007.
<span class="grey">Kunz, et al. Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
[<a id="ref-RFC5280">RFC5280</a>] Cooper, D., Santesson, S., Farrell, S., Boeyen, S.,
Housley, R., and W. Polk, "Internet X.509 Public Key
Infrastructure Certificate and Certificate Revocation List
(CRL) Profile", <a href="./rfc5280">RFC 5280</a>, May 2008.
[<a id="ref-RFC5646">RFC5646</a>] Phillips, A. and M. Davis, "Tags for Identifying
Languages", <a href="https://www.rfc-editor.org/bcp/bcp47">BCP 47</a>, <a href="./rfc5646">RFC 5646</a>, September 2009.
[<a id="ref-RFC5652">RFC5652</a>] Housley, R., "Cryptographic Message Syntax (CMS)",
<a href="./rfc5652">RFC 5652</a>, September 2009.
[<a id="ref-W3C.REC-xml-20081126">W3C.REC-xml-20081126</a>]
Yergeau, F., Maler, E., Paoli, J., Sperberg-McQueen, C.,
and T. Bray, "Extensible Markup Language (XML) 1.0 (Fifth
Edition)", World Wide Web Consortium Recommendation REC-
xml-20081126, November 2008,
<<a href="http://www.w3.org/TR/2008/REC-xml-20081126">http://www.w3.org/TR/2008/REC-xml-20081126</a>>.
[<a id="ref-W3C.REC-xml-names-20060816">W3C.REC-xml-names-20060816</a>]
Layman, A., Hollander, D., Tobin, R., and T. Bray,
"Namespaces in XML 1.0 (Second Edition)", World Wide Web
Consortium Recommendation REC-xml-names-20060816,
August 2006,
<<a href="http://www.w3.org/TR/2006/REC-xml-names-20060816">http://www.w3.org/TR/2006/REC-xml-names-20060816</a>>.
[<a id="ref-W3C.REC-xmlschema-1-20041028">W3C.REC-xmlschema-1-20041028</a>]
Thompson, H., Beech, D., Mendelsohn, N., and M. Maloney,
"XML Schema Part 1: Structures Second Edition", World Wide
Web Consortium Recommendation REC-xmlschema-1-20041028,
October 2004,
<<a href="http://www.w3.org/TR/2004/REC-xmlschema-1-20041028">http://www.w3.org/TR/2004/REC-xmlschema-1-20041028</a>>.
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. Informative References</span>
[<a id="ref-BNetzAg.2008">BNetzAg.2008</a>]
Federal Network Agency for Electricity, Gas,
Telecommunications, Post and Railway, "Bekanntmachung zur
elektronischen Signatur nach dem Signaturgesetz und der
Signaturverordnung (Uebersicht ueber geeignete
Algorithmen)", December 2007,
<<a href="http://www.bundesnetzagentur.de/media/archive/12198.pdf">http://www.bundesnetzagentur.de/media/archive/12198.pdf</a>>.
[<a id="ref-CCITT.x208.1988">CCITT.x208.1988</a>]
International Telephone and Telegraph Consultative
Committee, "Specification of Abstract Syntax Notation One
(ASN.1)", CCITT Recommendation X.208, November 1988.
<span class="grey">Kunz, et al. Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
[<a id="ref-CCITT.x209.1988">CCITT.x209.1988</a>]
International Telephone and Telegraph Consultative
Committee, "Specification of Basic Encoding Rules for
Abstract Syntax Notation One (ASN.1)",
CCITT Recommendation X.209, November 1988.
[<a id="ref-ETSI-TS101903">ETSI-TS101903</a>]
European Telecommunication Standards Institute (ETSI),
"XML Advanced Electronic Signatures (XAdES)", ETSI TS 101
903 V1.3.2, March 2006.
[<a id="ref-ETSI-TS102176-1-2005">ETSI-TS102176-1-2005</a>]
European Telecommunication Standards Institute (ETSI),
"Electronic Signatures and Infrastructures (ESI);
"Algorithms and Parameters for Secure Electronic
Signatures; Part 1: Hash functions and asymmetric
algorithms"", ETSI TS 102 176-1 V2.0.0, November 2007.
[<a id="ref-FIPS186-2">FIPS186-2</a>]
National Institute of Standards and Technology, "Digital
Signature Standard (DSS)", FIPS PUB 186-2 with Change
Notice, January 2000.
[<a id="ref-NIST.800-57-Part1.2006">NIST.800-57-Part1.2006</a>]
National Institute of Standards and Technology,
"Recommendation for Key Management - Part 1: General
(Revised)", NIST 800-57 Part 1, May 2006.
[<a id="ref-RFC3279">RFC3279</a>] Bassham, L., Polk, W., and R. Housley, "Algorithms and
Identifiers for the Internet X.509 Public Key
Infrastructure Certificate and Certificate Revocation List
(CRL) Profile", <a href="./rfc3279">RFC 3279</a>, April 2002.
[<a id="ref-RFC3443">RFC3443</a>] Agarwal, P. and B. Akyol, "Time To Live (TTL) Processing
in Multi-Protocol Label Switching (MPLS) Networks", <a href="./rfc3443">RFC</a>
<a href="./rfc3443">3443</a>, January 2003.
[<a id="ref-RFC3447">RFC3447</a>] Jonsson, J. and B. Kaliski, "Public-Key Cryptography
Standards (PKCS) #1: RSA Cryptography Specifications
Version 2.1", <a href="./rfc3447">RFC 3447</a>, February 2003.
[<a id="ref-RFC4051">RFC4051</a>] Eastlake, D., "Additional XML Security Uniform Resource
Identifiers (URIs)", <a href="./rfc4051">RFC 4051</a>, April 2005.
<span class="grey">Kunz, et al. Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
[<a id="ref-RFC4055">RFC4055</a>] Schaad, J., Kaliski, B., and R. Housley, "Additional
Algorithms and Identifiers for RSA Cryptography for use in
the Internet X.509 Public Key Infrastructure Certificate
and Certificate Revocation List (CRL) Profile", <a href="./rfc4055">RFC 4055</a>,
June 2005.
[<a id="ref-RFC4810">RFC4810</a>] Wallace, C., Pordesch, U., and R. Brandner, "Long-Term
Archive Service Requirements", <a href="./rfc4810">RFC 4810</a>, March 2007.
<span class="grey">Kunz, et al. Standards Track [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. DSSC and ERS</span>
<span class="h3"><a class="selflink" id="appendix-A.1" href="#appendix-A.1">A.1</a>. Verification of Evidence Records Using DSSC (Informative)</span>
This section describes the verification of an Evidence Record
according to the Evidence Record Syntax (ERS, [<a href="./rfc4998" title=""Evidence Record Syntax (ERS)"">RFC4998</a>]), using the
presented data structure.
An Evidence Record contains a sequence of ArchiveTimeStampChains,
which consist of ArchiveTimeStamps. For each ArchiveTimeStamp the
hash algorithm used for the hash tree (digestAlgorithm) as well as
the public key algorithm and hash algorithm in the timestamp
signature have to be examined. The relevant date is the time
information in the timestamp (date of issue). Starting with the
first ArchiveTimeStamp, it has to be assured that:
1. The timestamp uses public key and hash algorithms that were
suitable at the date of issue.
2. The hashtree was built with a hash algorithm that was suitable at
the date of issue as well.
3. Algorithms for timestamp and hashtree in the preceding
ArchiveTimeStamp must have been suitable at the issuing date of
considered ArchiveTimeStamp.
4. Algorithms in the last ArchiveTimeStamp have to be suitable now.
If the check of one of these items fails, this will lead to a failure
of the verification.
<span class="h3"><a class="selflink" id="appendix-A.2" href="#appendix-A.2">A.2</a>. Storing DSSC Policies in Evidence Records (Normative)</span>
This section describes how to store a policy in an Evidence Record.
ERS provides the field cryptoInfos for the storage of additional
verification data. For the integration of a security suitability
policy in an Evidence Record, the following content types are defined
for both ASN.1 and XML representation:
DSSC_ASN1 {iso(1) identified-organization(3) dod(6)
internet(1) security(5) mechanisms(5)
ltans(11) id-ct(1) id-ct-dssc-asn1(2) }
DSSC_XML {iso(1) identified-organization(3) dod(6)
internet(1) security(5) mechanisms(5)
ltans(11) id-ct(1) id-ct-dssc-xml(3) }
<span class="grey">Kunz, et al. Standards Track [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<span class="h2"><a class="selflink" id="appendix-B" href="#appendix-B">Appendix B</a>. XML Schema (Normative)</span>
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:dssc="urn:ietf:params:xml:ns:dssc"
xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
targetNamespace="urn:ietf:params:xml:ns:dssc"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
<xs:import namespace="http://www.w3.org/XML/1998/namespace"
schemaLocation="http://www.w3.org/2001/xml.xsd"/>
<xs:import namespace="http://www.w3.org/2000/09/xmldsig#"
schemaLocation="xmldsig-core-schema.xsd"/>
<xs:element name="SecuritySuitabilityPolicy"
type="dssc:SecuritySuitabilityPolicyType"/>
<xs:complexType name="SecuritySuitabilityPolicyType">
<xs:sequence>
<xs:element ref="dssc:PolicyName"/>
<xs:element ref="dssc:Publisher"/>
<xs:element name="PolicyIssueDate" type="xs:dateTime"/>
<xs:element name="NextUpdate" type="xs:dateTime" minOccurs="0"/>
<xs:element name="Usage" type="xs:string" minOccurs="0"/>
<xs:element ref="dssc:Algorithm" maxOccurs="unbounded"/>
<xs:element ref="ds:Signature" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="version" type="xs:string" default="1"/>
<xs:attribute name="lang" default="en"/>
<xs:attribute name="id" type="xs:ID"/>
</xs:complexType>
<xs:element name="PolicyName" type="dssc:PolicyNameType"/>
<xs:complexType name="PolicyNameType">
<xs:sequence>
<xs:element ref="dssc:Name"/>
<xs:element ref="dssc:ObjectIdentifier" minOccurs="0"/>
<xs:element ref="dssc:URI" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:element name="Publisher" type="dssc:PublisherType"/>
<xs:complexType name="PublisherType">
<xs:sequence>
<xs:element ref="dssc:Name"/>
<xs:element name="Address" type="xs:string" minOccurs="0"/>
<xs:element ref="dssc:URI" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:element name="Name" type="xs:string"/>
<xs:element name="ObjectIdentifier">
<xs:simpleType>
<span class="grey">Kunz, et al. Standards Track [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<xs:restriction base="xs:string">
<xs:pattern value="(\d+\.)+\d+"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="URI" type="xs:anyURI"/>
<xs:element name="Algorithm" type="dssc:AlgorithmType"/>
<xs:complexType name="AlgorithmType">
<xs:sequence>
<xs:element ref="dssc:AlgorithmIdentifier"/>
<xs:element ref="dssc:Evaluation" maxOccurs="unbounded"/>
<xs:element ref="dssc:Information" minOccurs="0"/>
<xs:any namespace="##other" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:element name="AlgorithmIdentifier"
type="dssc:AlgorithmIdentifierType"/>
<xs:complexType name="AlgorithmIdentifierType">
<xs:sequence>
<xs:element ref="dssc:Name"/>
<xs:element ref="dssc:ObjectIdentifier" maxOccurs="unbounded"/>
<xs:element ref="dssc:URI" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:element name="Validity" type="dssc:ValidityType"/>
<xs:complexType name="ValidityType">
<xs:sequence>
<xs:element name="Start" type="xs:date" minOccurs="0"/>
<xs:element name="End" type="xs:date" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:element name="Information" type="dssc:InformationType"/>
<xs:complexType name="InformationType">
<xs:sequence>
<xs:element name="Text" type="xs:string" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:element name="Evaluation" type="dssc:EvaluationType"/>
<xs:complexType name="EvaluationType">
<xs:sequence>
<xs:element ref="dssc:Parameter" minOccurs="0"
maxOccurs="unbounded"/>
<xs:element ref="dssc:Validity"/>
<xs:any namespace="##other" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:element name="Parameter" type="dssc:ParameterType"/>
<xs:complexType name="ParameterType">
<span class="grey">Kunz, et al. Standards Track [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<xs:sequence>
<xs:element name="Min" type="xs:int" minOccurs="0"/>
<xs:element name="Max" type="xs:int" minOccurs="0"/>
<xs:any namespace="##other" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="required"/>
</xs:complexType>
</xs:schema>
<span class="h2"><a class="selflink" id="appendix-C" href="#appendix-C">Appendix C</a>. ASN.1 Module in 1988 Syntax (Informative)</span>
ASN.1-Module
DSSC {iso(1) identified-organization(3) dod(6)
internet(1) security(5) mechanisms(5)
ltans(11) id-mod(0) id-mod-dssc88(6) id-mod-dssc88-v1(1) }
DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- EXPORT ALL --
IMPORTS
-- Import from <a href="./rfc5280">RFC 5280</a> [<a href="./rfc5280" title=""Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">RFC5280</a>]
-- Delete following import statement
-- if "new" types are supported
UTF8String FROM PKIX1Explicit88
{ iso(1) identified-organization(3) dod(6)
internet(1) security(5) mechanisms(5) pkix(7)
mod(0) pkix1-explicit(18) }
-- Import from <a href="./rfc5652">RFC 5652</a> [<a href="./rfc5652" title=""Cryptographic Message Syntax (CMS)"">RFC5652</a>]
ContentInfo FROM CryptographicMessageSyntax2004
{ iso(1) member-body(2) us(840)
rsadsi(113549) pkcs(1) pkcs-9(9)
smime(16) modules(0) cms-2004(24)}
;
SecuritySuitabilityPolicy ::= ContentInfo
-- contentType is id-signedData as defined in [<a href="./rfc5652" title=""Cryptographic Message Syntax (CMS)"">RFC5652</a>]
-- content is SignedData as defined in [<a href="./rfc5652" title=""Cryptographic Message Syntax (CMS)"">RFC5652</a>]
-- eContentType within SignedData is id-ct-dssc
-- eContent within SignedData is TBSPolicy
<span class="grey">Kunz, et al. Standards Track [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
id-ct-dssc OBJECT IDENTIFIER ::= {
iso(1) identified-organization(3) dod(6)
internet(1) security(5) mechanisms(5)
ltans(11) id-ct(1) id-ct-dssc-tbsPolicy(6) }
TBSPolicy ::= SEQUENCE {
version INTEGER DEFAULT {v1(1)},
language UTF8String DEFAULT "en",
policyName PolicyName,
publisher Publisher,
policyIssueDate GeneralizedTime,
nextUpdate GeneralizedTime OPTIONAL,
usage UTF8String OPTIONAL,
algorithms SEQUENCE OF Algorithm
}
PolicyName ::= SEQUENCE {
name UTF8String,
oid OBJECT IDENTIFIER OPTIONAL,
uri IA5String OPTIONAL
}
Publisher ::= SEQUENCE {
name UTF8String,
address [0] UTF8String OPTIONAL,
uri [1] IA5String OPTIONAL
}
Algorithm ::= SEQUENCE {
algorithmIdentifier AlgID,
evaluations SEQUENCE OF Evaluation,
information [0] SEQUENCE OF UTF8String OPTIONAL,
other [1] Extension OPTIONAL
}
Extension ::= SEQUENCE {
extensionType OBJECT IDENTIFIER,
extension ANY DEFINED BY extensionType
}
AlgID ::= SEQUENCE {
name UTF8String,
oid [0] SEQUENCE OF OBJECT IDENTIFIER,
uri [1] SEQUENCE OF IA5String OPTIONAL
}
Evaluation ::= SEQUENCE {
parameters [0] SEQUENCE OF Parameter OPTIONAL,
<span class="grey">Kunz, et al. Standards Track [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
validity [1] Validity,
other [2] Extension OPTIONAL
}
Parameter ::= SEQUENCE {
name UTF8String,
min [0] INTEGER OPTIONAL,
max [1] INTEGER OPTIONAL,
other [2] Extension OPTIONAL
}
Validity ::= SEQUENCE {
start [0] GeneralizedTime OPTIONAL,
end [1] GeneralizedTime OPTIONAL
}
END
<span class="h2"><a class="selflink" id="appendix-D" href="#appendix-D">Appendix D</a>. ASN.1 Module in 1997 Syntax (Normative)</span>
ASN.1-Module
DSSC {iso(1) identified-organization(3) dod(6)
internet(1) security(5) mechanisms(5)
ltans(11) id-mod(0) id-mod-dssc(7) id-mod-dssc-v1(1) }
DEFINITIONS IMPLICIT TAGS ::=
BEGIN
-- EXPORT ALL --
IMPORTS
-- Import from <a href="./rfc5280">RFC 5280</a> [<a href="./rfc5280" title=""Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile"">RFC5280</a>]
-- Delete following import statement
-- if "new" types are supported
UTF8String FROM PKIX1Explicit88
{ iso(1) identified-organization(3) dod(6)
internet(1) security(5) mechanisms(5) pkix(7)
mod(0) pkix1-explicit(18) }
-- Import from <a href="./rfc5652">RFC 5652</a> [<a href="./rfc5652" title=""Cryptographic Message Syntax (CMS)"">RFC5652</a>]
ContentInfo FROM CryptographicMessageSyntax2004
{ iso(1) member-body(2) us(840)
rsadsi(113549) pkcs(1) pkcs-9(9)
smime(16) modules(0) cms-2004(24)}
<span class="grey">Kunz, et al. Standards Track [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
;
SecuritySuitabilityPolicy ::= ContentInfo
-- contentType is id-signedData as defined in [<a href="./rfc5652" title=""Cryptographic Message Syntax (CMS)"">RFC5652</a>]
-- content is SignedData as defined in [<a href="./rfc5652" title=""Cryptographic Message Syntax (CMS)"">RFC5652</a>]
-- eContentType within SignedData is id-ct-dssc
-- eContent within SignedData is TBSPolicy
id-ct-dssc OBJECT IDENTIFIER ::= {
iso(1) identified-organization(3) dod(6)
internet(1) security(5) mechanisms(5)
ltans(11) id-ct(1) id-ct-dssc-tbsPolicy(6) }
TBSPolicy ::= SEQUENCE {
version INTEGER DEFAULT {v1(1)},
language UTF8String DEFAULT "en",
policyName PolicyName,
publisher Publisher,
policyIssueDate GeneralizedTime,
nextUpdate GeneralizedTime OPTIONAL,
usage UTF8String OPTIONAL,
algorithms SEQUENCE OF Algorithm
}
PolicyName ::= SEQUENCE {
name UTF8String,
oid OBJECT IDENTIFIER OPTIONAL,
uri IA5String OPTIONAL
}
Publisher ::= SEQUENCE {
name UTF8String,
address [0] UTF8String OPTIONAL,
uri [1] IA5String OPTIONAL
}
Algorithm ::= SEQUENCE {
algorithmIdentifier AlgID,
evaluations SEQUENCE OF Evaluation,
information [0] SEQUENCE OF UTF8String OPTIONAL,
other [1] Extension OPTIONAL
}
Extension ::= SEQUENCE {
extensionType EXTENSION-TYPE.&id ({SupportedExtensions}),
extension EXTENSION-TYPE.&Type
({SupportedExtensions}{@extensionType})
<span class="grey">Kunz, et al. Standards Track [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
}
EXTENSION-TYPE ::= TYPE-IDENTIFIER
SupportedExtensions EXTENSION-TYPE ::= {...}
AlgID ::= SEQUENCE {
name UTF8String,
oid [0] SEQUENCE OF OBJECT IDENTIFIER,
uri [1] SEQUENCE OF IA5String OPTIONAL
}
Evaluation ::= SEQUENCE {
parameters [0] SEQUENCE OF Parameter OPTIONAL,
validity [1] Validity,
other [2] Extension OPTIONAL
}
Parameter ::= SEQUENCE {
name UTF8String,
min [0] INTEGER OPTIONAL,
max [1] INTEGER OPTIONAL,
other [2] Extension OPTIONAL
}
Validity ::= SEQUENCE {
start [0] GeneralizedTime OPTIONAL,
end [1] GeneralizedTime OPTIONAL
}
END
<span class="h2"><a class="selflink" id="appendix-E" href="#appendix-E">Appendix E</a>. Example</span>
The following example shows a policy that may be used for signature
verification. It contains hash algorithms, public key algorithms,
and signature schemes. SHA-1 as well as RSA with modulus length of
1024 are examples for expired algorithms.
<SecuritySuitabilityPolicy xmlns="urn:ietf:params:xml:ns:dssc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<PolicyName>
<Name>Evaluation of cryptographic algorithms</Name>
</PolicyName>
<Publisher>
<Name>Some Evaluation Authority</Name>
</Publisher>
<PolicyIssueDate>2009-01-01T00:00:00</PolicyIssueDate>
<span class="grey">Kunz, et al. Standards Track [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<Usage>Digital signature verification</Usage>
<Algorithm>
<AlgorithmIdentifier>
<Name>SHA-1</Name>
<ObjectIdentifier>1.3.14.3.2.26</ObjectIdentifier>
</AlgorithmIdentifier>
<Evaluation>
<Validity>
<End>2008-06-30</End>
</Validity>
</Evaluation>
</Algorithm>
<Algorithm>
<AlgorithmIdentifier>
<Name>SHA-256</Name>
<ObjectIdentifier>2.16.840.1.101.3.4.2.1</ObjectIdentifier>
</AlgorithmIdentifier>
<Evaluation>
<Validity>
<End>2014-12-31</End>
</Validity>
</Evaluation>
</Algorithm>
<Algorithm>
<AlgorithmIdentifier>
<Name>SHA-512</Name>
<ObjectIdentifier>2.16.840.1.101.3.4.2.3</ObjectIdentifier>
</AlgorithmIdentifier>
<Evaluation>
<Validity>
<End>2014-12-31</End>
</Validity>
</Evaluation>
</Algorithm>
<Algorithm>
<AlgorithmIdentifier>
<Name>RSA</Name>
<ObjectIdentifier>1.2.840.113549.1.1.1</ObjectIdentifier>
</AlgorithmIdentifier>
<Evaluation>
<Parameter name="moduluslength">
<Min>1024</Min>
</Parameter>
<Validity>
<End>2008-03-31</End>
</Validity>
</Evaluation>
<Evaluation>
<span class="grey">Kunz, et al. Standards Track [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
<Parameter name="moduluslength">
<Min>2048</Min>
</Parameter>
<Validity>
<End>2014-12-31</End>
</Validity>
</Evaluation>
</Algorithm>
<Algorithm>
<AlgorithmIdentifier>
<Name>DSA</Name>
<ObjectIdentifier>1.2.840.10040.4.1</ObjectIdentifier>
</AlgorithmIdentifier>
<Evaluation>
<Parameter name="plength">
<Min>1024</Min>
</Parameter>
<Parameter name="qlength">
<Min>160</Min>
</Parameter>
<Validity>
<End>2007-12-31</End>
</Validity>
</Evaluation>
<Evaluation>
<Parameter name="plength">
<Min>2048</Min>
</Parameter>
<Parameter name="qlength">
<Min>224</Min>
</Parameter>
<Validity>
<End>2014-12-31</End>
</Validity>
</Evaluation>
</Algorithm>
<Algorithm>
<AlgorithmIdentifier>
<Name>PKCS#1 v1.5 SHA-1 with RSA</Name>
<ObjectIdentifier>1.2.840.113549.1.1.5</ObjectIdentifier>
</AlgorithmIdentifier>
<Evaluation>
<Parameter name="moduluslength">
<Min>1024</Min>
</Parameter>
<Validity>
<End>2008-03-31</End>
</Validity>
<span class="grey">Kunz, et al. Standards Track [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
</Evaluation>
<Evaluation>
<Parameter name="moduluslength">
<Min>2048</Min>
</Parameter>
<Validity>
<End>2008-06-30</End>
</Validity>
</Evaluation>
</Algorithm>
<Algorithm>
<AlgorithmIdentifier>
<Name>PKCS#1 v1.5 SHA-256 with RSA</Name>
<ObjectIdentifier>1.2.840.113549.1.1.11</ObjectIdentifier>
</AlgorithmIdentifier>
<Evaluation>
<Parameter name="moduluslength">
<Min>1024</Min>
</Parameter>
<Validity>
<End>2008-03-31</End>
</Validity>
</Evaluation>
<Evaluation>
<Parameter name="moduluslength">
<Min>2048</Min>
</Parameter>
<Validity>
<End>2014-12-31</End>
</Validity>
</Evaluation>
</Algorithm>
<Algorithm>
<AlgorithmIdentifier>
<Name>PKCS#1 v1.5 SHA-512 with RSA</Name>
<ObjectIdentifier>1.2.840.113549.1.1.13</ObjectIdentifier>
</AlgorithmIdentifier>
<Evaluation>
<Parameter name="moduluslength">
<Min>1024</Min>
</Parameter>
<Validity>
<End>2008-03-31</End>
</Validity>
</Evaluation>
<Evaluation>
<Parameter name="moduluslength">
<Min>2048</Min>
<span class="grey">Kunz, et al. Standards Track [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
</Parameter>
<Validity>
<End>2014-12-31</End>
</Validity>
</Evaluation>
</Algorithm>
<Algorithm>
<AlgorithmIdentifier>
<Name>SHA-1 with DSA</Name>
<ObjectIdentifier>1.2.840.10040.4.3</ObjectIdentifier>
</AlgorithmIdentifier>
<Evaluation>
<Parameter name="plength">
<Min>1024</Min>
</Parameter>
<Parameter name="qlength">
<Min>160</Min>
</Parameter>
<Validity>
<End>2007-12-31</End>
</Validity>
</Evaluation>
<Evaluation>
<Parameter name="plength">
<Min>2048</Min>
</Parameter>
<Parameter name="qlength">
<Min>224</Min>
</Parameter>
<Validity>
<End>2008-06-30</End>
</Validity>
</Evaluation>
</Algorithm>
</SecuritySuitabilityPolicy>
<span class="grey">Kunz, et al. Standards Track [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc5698">RFC 5698</a> DSSC November 2009</span>
Authors' Addresses
Thomas Kunz
Fraunhofer Institute for Secure Information Technology
Rheinstrasse 75
Darmstadt D-64295
Germany
EMail: thomas.kunz@sit.fraunhofer.de
Susanne Okunick
pawisda systems GmbH
Robert-Koch-Strasse 9
Weiterstadt D-64331
Germany
EMail: susanne.okunick@pawisda.de
Ulrich Pordesch
Fraunhofer Gesellschaft
Rheinstrasse 75
Darmstadt D-64295
Germany
EMail: ulrich.pordesch@zv.fraunhofer.de
Kunz, et al. Standards Track [Page 40]
</pre>
|