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 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581
|
<pre>Network Working Group D. Eastlake
Request for Comments: 3075 Motorola
Category: Standards Track J. Reagle
W3C/MIT
D. Solo
Citigroup
March 2001
<span class="h1">XML-Signature Syntax and Processing</span>
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) 2001 The Internet Society & W3C (MIT, INRIA, Keio), All
Rights Reserved.
Abstract
This document specifies XML (Extensible Markup Language) digital
signature processing rules and syntax. XML Signatures provide
integrity, message authentication, and/or signer authentication
services for data of any type, whether located within the XML that
includes the signature or elsewhere.
Table of Contents
<a href="#section-1">1</a>. Introduction ................................................ <a href="#page-3">3</a>
<a href="#section-1">1</a>. Editorial Conventions .................................. <a href="#page-3">3</a>
<a href="#section-2">2</a>. Design Philosophy ...................................... <a href="#page-4">4</a>
<a href="#section-3">3</a>. Versions, Namespaces and Identifiers ................... <a href="#page-4">4</a>
<a href="#section-4">4</a>. Acknowledgements ....................................... <a href="#page-5">5</a>
<a href="#section-2">2</a>. Signature Overview and Examples ............................. <a href="#page-6">6</a>
1. Simple Example (Signature, SignedInfo, Methods, and
References) ............................................ <a href="#page-7">7</a>
<a href="#section-1">1</a>. More on Reference ................................. <a href="#page-9">9</a>
<a href="#section-2">2</a>. Extended Example (Object and SignatureProperty) ........ <a href="#page-10">10</a>
<a href="#section-3">3</a>. Extended Example (Object and Manifest) ................. <a href="#page-11">11</a>
<a href="#section-3">3</a>. Processing Rules ............................................ <a href="#page-13">13</a>
<a href="#section-1">1</a>. Core Generation .... ................................... <a href="#page-13">13</a>
<a href="#section-1">1</a>. Reference Generation .............................. <a href="#page-13">13</a>
<a href="#section-2">2</a>. Signature Generation .............................. <a href="#page-13">13</a>
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<a href="#section-2">2</a>. Core Validation ........................................ <a href="#page-13">13</a>
<a href="#section-1">1</a>. Reference Validation .............................. <a href="#page-14">14</a>
<a href="#section-2">2</a>. Signature Validation .............................. <a href="#page-14">14</a>
<a href="#section-4">4</a>. Core Signature Syntax ....................................... <a href="#page-14">14</a>
<a href="#section-1">1</a>. The Signature element .................................. <a href="#page-15">15</a>
<a href="#section-2">2</a>. The SignatureValue Element ............................. <a href="#page-16">16</a>
<a href="#section-3">3</a>. The SignedInfo Element ................................. <a href="#page-16">16</a>
<a href="#section-1">1</a>. The CanonicalizationMethod Element ................ <a href="#page-17">17</a>
<a href="#section-2">2</a>. The SignatureMethod Element ....................... <a href="#page-18">18</a>
<a href="#section-3">3</a>. The Reference Element ............................. <a href="#page-19">19</a>
<a href="#section-1">1</a>. The URI Attribute ............................ <a href="#page-19">19</a>
<a href="#section-2">2</a>. The Reference Processing Model ............... <a href="#page-21">21</a>
<a href="#section-3">3</a>. Same-Document URI-References ................. <a href="#page-23">23</a>
<a href="#section-4">4</a>. The Transforms Element ....................... <a href="#page-24">24</a>
<a href="#section-5">5</a>. The DigestMethod Element ..................... <a href="#page-25">25</a>
<a href="#section-6">6</a>. The DigestValue Element ...................... <a href="#page-26">26</a>
<a href="#section-4">4</a>. The KeyInfo Element .................................... <a href="#page-26">26</a>
<a href="#section-1">1</a>. The KeyName Element ............................... <a href="#page-27">27</a>
<a href="#section-2">2</a>. The KeyValue Element .............................. <a href="#page-28">28</a>
<a href="#section-3">3</a>. The RetrievalMethod Element ....................... <a href="#page-28">28</a>
<a href="#section-4">4</a>. The X509Data Element .............................. <a href="#page-29">29</a>
<a href="#section-5">5</a>. The PGPData Element ............................... <a href="#page-31">31</a>
<a href="#section-6">6</a>. The SPKIData Element .............................. <a href="#page-32">32</a>
<a href="#section-7">7</a>. The MgmtData Element .............................. <a href="#page-32">32</a>
<a href="#section-5">5</a>. The Object Element ..................................... <a href="#page-33">33</a>
<a href="#section-5">5</a>. Additional Signature Syntax ................................. <a href="#page-34">34</a>
<a href="#section-1">1</a>. The Manifest Element ................................... <a href="#page-34">34</a>
<a href="#section-2">2</a>. The SignatureProperties Element ........................ <a href="#page-35">35</a>
<a href="#section-3">3</a>. Processing Instructions ................................ <a href="#page-36">36</a>
<a href="#section-4">4</a>. Comments in dsig Elements .............................. <a href="#page-36">36</a>
<a href="#section-6">6</a>. Algorithms .................................................. <a href="#page-36">36</a>
<a href="#section-1">1</a>. Algorithm Identifiers and Implementation Requirements .. <a href="#page-36">36</a>
<a href="#section-2">2</a>. Message Digests ........................................ <a href="#page-38">38</a>
<a href="#section-1">1</a>. SHA-1 ............................................. <a href="#page-38">38</a>
<a href="#section-3">3</a>. Message Authentication Codes ........................... <a href="#page-38">38</a>
<a href="#section-1">1</a>. HMAC .............................................. <a href="#page-38">38</a>
<a href="#section-4">4</a>. Signature Algorithms ................................... <a href="#page-39">39</a>
<a href="#section-1">1</a>. DSA ............................................... <a href="#page-39">39</a>
<a href="#section-2">2</a>. PKCS1 ............................................. <a href="#page-40">40</a>
<a href="#section-5">5</a>. Canonicalization Algorithms ............................ <a href="#page-42">42</a>
<a href="#section-1">1</a>. Minimal Canonicalization .......................... <a href="#page-43">43</a>
<a href="#section-2">2</a>. Canonical XML ..................................... <a href="#page-43">43</a>
<a href="#section-6">6</a>. Transform Algorithms ................................... <a href="#page-44">44</a>
<a href="#section-1">1</a>. Canonicalization .................................. <a href="#page-44">44</a>
<a href="#section-2">2</a>. Base64 ............................................ <a href="#page-44">44</a>
<a href="#section-3">3</a>. XPath Filtering ................................... <a href="#page-45">45</a>
<a href="#section-4">4</a>. Enveloped Signature Transform ..................... <a href="#page-48">48</a>
<a href="#section-5">5</a>. XSLT Transform .................................... <a href="#page-48">48</a>
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<a href="#section-7">7</a>. XML Canonicalization and Syntax Constraint Considerations ... <a href="#page-49">49</a>
<a href="#section-1">1</a>. XML 1.0, Syntax Constraints, and Canonicalization ..... <a href="#page-50">50</a>
<a href="#section-2">2</a>. DOM/SAX Processing and Canonicalization ................ <a href="#page-51">51</a>
<a href="#section-8">8</a>. Security Considerations ..................................... <a href="#page-52">52</a>
<a href="#section-1">1</a>. Transforms ............................................. <a href="#page-52">52</a>
<a href="#section-1">1</a>. Only What is Signed is Secure ..................... <a href="#page-52">52</a>
<a href="#section-2">2</a>. Only What is "Seen" Should be Signed .............. <a href="#page-53">53</a>
<a href="#section-3">3</a>. "See" What is Signed .............................. <a href="#page-53">53</a>
<a href="#section-2">2</a>. Check the Security Model ............................... <a href="#page-54">54</a>
<a href="#section-3">3</a>. Algorithms, Key Lengths, Etc. .......................... <a href="#page-54">54</a>
<a href="#section-9">9</a>. Schema, DTD, Data Model,and Valid Examples .................. <a href="#page-55">55</a>
<a href="#section-10">10</a>. Definitions ................................................. <a href="#page-56">56</a>
<a href="#section-11">11</a>. References .................................................. <a href="#page-58">58</a>
<a href="#section-12">12</a>. Authors' Addresses .......................................... <a href="#page-63">63</a>
<a href="#section-13">13</a>. Full Copyright Statement .................................... <a href="#page-64">64</a>
<span class="h3"><a class="selflink" id="section-1.0" href="#section-1.0">1.0</a> Introduction</span>
This document specifies XML syntax and processing rules for creating
and representing digital signatures. XML Signatures can be applied to
any digital content (data object), including XML. An XML Signature
may be applied to the content of one or more resources. Enveloped or
enveloping signatures are over data within the same XML document as
the signature; detached signatures are over data external to the
signature element. More specifically, this specification defines an
XML signature element type and an XML signature application;
conformance requirements for each are specified by way of schema
definitions and prose respectively. This specification also includes
other useful types that identify methods for referencing collections
of resources, algorithms, and keying and management information.
The XML Signature is a method of associating a key with referenced
data (octets); it does not normatively specify how keys are
associated with persons or institutions, nor the meaning of the data
being referenced and signed. Consequently, while this specification
is an important component of secure XML applications, it itself is
not sufficient to address all application security/trust concerns,
particularly with respect to using signed XML (or other data formats)
as a basis of human-to-human communication and agreement. Such an
application must specify additional key, algorithm, processing and
rendering requirements. For further information, please see Security
Considerations (<a href="#section-8">section 8</a>).
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a> Editorial and Conformance Conventions</span>
For readability, brevity, and historic reasons this document uses the
term "signature" to generally refer to digital authentication values
of all types.Obviously, the term is also strictly used to refer to
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
authentication values that are based on public keys and that provide
signer authentication. When specifically discussing authentication
values based on symmetric secret key codes we use the terms
authenticators or authentication codes. (See Check the Security
Model, <a href="#section-8.3">section 8.3</a>.)
This specification uses both XML Schemas [XML-schema] and DTDs [XML].
(Readers unfamiliar with DTD syntax may wish to refer to Ron
Bourret's "Declaring Elements and Attributes in an XML DTD"
[Bourret].) The schema definition is presently normative.
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
specification are to be interpreted as described in <a href="./rfc2119">RFC2119</a>
[KEYWORDS]:
"they MUST only be used where it is actually required for
interoperation or to limit behavior which has potential for
causing harm (e.g., limiting retransmissions)"
Consequently, we use these capitalized keywords to unambiguously
specify requirements over protocol and application features and
behavior that affect the interoperability and security of
implementations. These key words are not used (capitalized) to
describe XML grammar; schema definitions unambiguously describe such
requirements and we wish to reserve the prominence of these terms for
the natural language descriptions of protocols and features. For
instance, an XML attribute might be described as being "optional."
Compliance with the XML-namespace specification [XML-ns] is described
as "REQUIRED."
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a> Design Philosophy</span>
The design philosophy and requirements of this specification are
addressed in the XML-Signature Requirements document [XML-Signature-
RD].
<span class="h3"><a class="selflink" id="section-1.3" href="#section-1.3">1.3</a> Versions, Namespaces and Identifiers</span>
No provision is made for an explicit version number in this syntax.
If a future version is needed, it will use a different namespace The
XML namespace [XML-ns] URI that MUST be used by implementations of
this (dated) specification is:
xmlns="http://www.w3.org/2000/09/xmldsig#"
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
This namespace is also used as the prefix for algorithm identifiers
used by this specification. While applications MUST support XML and
XML-namespaces, the use of internal entities [XML] or our "dsig" XML
namespace prefix and defaulting/scoping conventions are OPTIONAL; we
use these facilities to provide compact and readable examples.
This specification uses Uniform Resource Identifiers [URI] to
identify resources, algorithms, and semantics. The URI in the
namespace declaration above is also used as a prefix for URIs under
the control of this specification. For resources not under the
control of this specification, we use the designated Uniform Resource
Names [URN] or Uniform Resource Locators [URL] defined by its
normative external specification. If an external specification has
not allocated itself a Uniform Resource Identifier we allocate an
identifier under our own namespace. For instance:
SignatureProperties is identified and defined by this specification's
namespace
<a href="http://www.w3.org/2000/09/xmldsig#SignatureProperties">http://www.w3.org/2000/09/xmldsig#SignatureProperties</a>
XSLT is identified and defined by an external URI
<a href="http://www.w3.org/TR/1999/PR-xslt-19991008">http://www.w3.org/TR/1999/PR-xslt-19991008</a>
SHA1 is identified via this specification's namespace and defined via
a normative reference
<a href="http://www.w3.org/2000/09/xmldsig#sha1">http://www.w3.org/2000/09/xmldsig#sha1</a>
FIPS PUB 180-1. Secure Hash Standard. U.S. Department of
Commerce/National Institute of Standards and Technology.
Finally, in order to provide for terse namespace declarations we
sometimes use XML internal entities [XML] within URIs. For instance:
<?xml version='1.0'?>
<!DOCTYPE Signature SYSTEM
"xmldsig-core-schema.dtd" [ <!ENTITY dsig
"<a href="http://www.w3.org/2000/09/xmldsig#">http://www.w3.org/2000/09/xmldsig#</a>"> ]>
<Signature xmlns="&dsig;" Id="MyFirstSignature">
<SignedInfo>
...
<span class="h3"><a class="selflink" id="section-1.4" href="#section-1.4">1.4</a> Acknowledgements</span>
The contributions of the following working group members to this
specification are gratefully acknowledged:
* Mark Bartel, JetForm Corporation (Author)
* John Boyer, PureEdge (Author)
* Mariano P. Consens, University of Waterloo
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
* John Cowan, Reuters Health
* Donald Eastlake 3rd, Motorola (Chair, Author/Editor)
* Barb Fox, Microsoft (Author)
* Christian Geuer-Pollmann, University Siegen
* Tom Gindin, IBM
* Phillip Hallam-Baker, VeriSign Inc
* Richard Himes, US Courts
* Merlin Hughes, Baltimore
* Gregor Karlinger, IAIK TU Graz
* Brian LaMacchia, Microsoft
* Peter Lipp, IAIK TU Graz
* Joseph Reagle, W3C (Chair, Author/Editor)
* Ed Simon, Entrust Technologies Inc. (Author)
* David Solo, Citigroup (Author/Editor)
* Petteri Stenius, DONE Information, Ltd
* Raghavan Srinivas, Sun
* Kent Tamura, IBM
* Winchel Todd Vincent III, GSU
* Carl Wallace, Corsec Security, Inc.
* Greg Whitehead, Signio Inc.
As are the last call comments from the following:
* Dan Connolly, W3C
* Paul Biron, Kaiser Permanente, on behalf of the XML Schema WG.
* Martin J. Duerst, W3C; and Masahiro Sekiguchi, Fujitsu; on
behalf of the Internationalization WG/IG.
* Jonathan Marsh, Microsoft, on behalf of the Extensible
Stylesheet Language WG.
<span class="h3"><a class="selflink" id="section-2.0" href="#section-2.0">2.0</a> Signature Overview and Examples</span>
This section provides an overview and examples of XML digital
signature syntax. The specific processing is given in Processing
Rules (<a href="#section-3">section 3</a>). The formal syntax is found in Core Signature
Syntax (<a href="#section-4">section 4</a>) and Additional Signature Syntax (<a href="#section-5">section 5</a>).
In this section, an informal representation and examples are used to
describe the structure of the XML signature syntax. This
representation and examples may omit attributes, details and
potential features that are fully explained later.
XML Signatures are applied to arbitrary digital content (data
objects) via an indirection. Data objects are digested, the
resulting value is placed in an element (with other information) and
that element is then digested and cryptographically signed. XML
digital signatures are represented by the Signature element which has
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
the following structure (where "?" denotes zero or one occurrence;
"+" denotes one or more occurrences; and "*" denotes zero or more
occurrences):
<Signature>
<SignedInfo>
(CanonicalizationMethod)
(SignatureMethod)
(<Reference (URI=)? >
(Transforms)?
(DigestMethod)
(DigestValue)
</Reference>)+
</SignedInfo>
(SignatureValue)
(KeyInfo)?
(Object)*
</Signature>
Signatures are related to data objects via URIs [URI]. Within an XML
document, signatures are related to local data objects via fragment
identifiers. Such local data can be included within an enveloping
signature or can enclose an enveloped signature. Detached signatures
are over external network resources or local data objects that
resides within the same XML document as sibling elements; in this
case, the signature is neither enveloping (signature is parent) nor
enveloped (signature is child). Since a Signature element (and its
Id attribute value/name) may co-exist or be combined with other
elements (and their IDs) within a single XML document, care should be
taken in choosing names such that there are no subsequent collisions
that violate the ID uniqueness validity constraint [XML].
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a> Simple Example (Signature, SignedInfo, Methods, and References)</span>
The following example is a detached signature of the content of the
HTML4 in XML specification.
[<a id="ref-s01">s01</a>] <Signature Id="MyFirstSignature"
xmlns="http://www.w3.org/2000/09/xmldsig#">
[s02] <SignedInfo>
[<a href="#ref-s03">s03</a>] <CanonicalizationMethod
Algorithm="http://www.w3.org/TR/2000/CR-xml-c14n-20001026"/>
[<a href="#ref-s04">s04</a>] <SignatureMethod
Algorithm="http://www.w3.org/2000/09/xmldsig#dsa-sha1"/>
[<a href="#ref-s05">s05</a>] <Reference URI="http://www.w3.org/TR/2000/REC-xhtml1-20000126/">
[s06] <Transforms>
[s07] <Transform Algorithm="http://www.w3.org/TR/2000/
CR-xml-c14n-20001026"/>
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
[<a id="ref-s08">s08</a>] </Transforms>
[s09] <DigestMethod Algorithm="http://www.w3.org/2000/09/
xmldsig#sha1"/>
[s10] <DigestValue>j6lwx3rvEPO0vKtMup4NbeVu8nk=</DigestValue>
[s11] </Reference>
[s12] </SignedInfo>
[s13] <SignatureValue>MC0CFFrVLtRlk=...</SignatureValue>
[s14] <KeyInfo>
[s15a] <KeyValue>
[s15b] <DSAKeyValue>
[s15c] <P>...</P><Q>...</Q><G>...</G><Y>...</Y>
[s15d] </DSAKeyValue>
[s15e] </KeyValue>
[s16] </KeyInfo>
[s17] </Signature>
[<a id="ref-s02-12">s02-12</a>] The required SignedInfo element is the information that is
actually signed. Core validation of SignedInfo consists of two
mandatory processes: validation of the signature over SignedInfo and
validation of each Reference digest within SignedInfo. Note that the
algorithms used in calculating the SignatureValue are also included
in the signed information while the SignatureValue element is outside
SignedInfo.
[<a id="ref-s03">s03</a>] The CanonicalizationMethod is the algorithm that is used to
canonicalize the SignedInfo element before it is digested as part of
the signature operation.
[<a id="ref-s04">s04</a>] The SignatureMethod is the algorithm that is used to convert
the canonicalized SignedInfo into the SignatureValue. It is a
combination of a digest algorithm and a key dependent algorithm and
possibly other algorithms such as padding, for example RSA-SHA1. The
algorithm names are signed to resist attacks based on substituting a
weaker algorithm. To promote application interoperability we specify
a set of signature algorithms that MUST be implemented, though their
use is at the discretion of the signature creator. We specify
additional algorithms as RECOMMENDED or OPTIONAL for implementation
and the signature design permits arbitrary user algorithm
specification.
[<a id="ref-s05-11">s05-11</a>] Each Reference element includes the digest method and
resulting digest value calculated over the identified data object.
It also may include transformations that produced the input to the
digest operation. A data object is signed by computing its digest
value and a signature over that value. The signature is later
checked via reference and signature validation.
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
[<a id="ref-s14-16">s14-16</a>] KeyInfo indicates the key to be used to validate the
signature. Possible forms for identification include certificates,
key names, and key agreement algorithms and information -- we define
only a few. KeyInfo is optional for two reasons. First, the signer
may not wish to reveal key information to all document processing
parties. Second, the information may be known within the
application's context and need not be represented explicitly. Since
KeyInfo is outside of SignedInfo, if the signer wishes to bind the
keying information to the signature, a Reference can easily identify
and include the KeyInfo as part of the signature.
<span class="h4"><a class="selflink" id="section-2.1.1" href="#section-2.1.1">2.1.1</a> More on Reference</span>
[<a id="ref-s05">s05</a>] <Reference URI="http://www.w3.org/TR/2000/REC-xhtml1-20000126/">
[s06] <Transforms>
[s07] <Transform
Algorithm="http://www.w3.org/TR/2000/
CR-xml-c14n-20001026"/>
[<a href="#ref-s08">s08</a>] </Transforms>
[s09] <DigestMethod Algorithm="http://www.w3.org/2000/09/
xmldsig#sha1"/>
[s10] <DigestValue>j6lwx3rvEPO0vKtMup4NbeVu8nk=</DigestValue>
[s11] </Reference>
[<a id="ref-s05">s05</a>] The optional URI attribute of Reference identifies the data
object to be signed. This attribute may be omitted on at most one
Reference in a Signature. (This limitation is imposed in order to
ensure that references and objects may be matched unambiguously.)
[<a id="ref-s05-08">s05-08</a>] This identification, along with the transforms, is a
description provided by the signer on how they obtained the signed
data object in the form it was digested (i.e., the digested content).
The verifier may obtain the digested content in another method so
long as the digest verifies. In particular, the verifier may obtain
the content from a different location such as a local store than that
specified in the URI.
[<a id="ref-s06-08">s06-08</a>] Transforms is an optional ordered list of processing steps
that were applied to the resource's content before it was digested.
Transforms can include operations such as canonicalization,
encoding/decoding (including compression/inflation), XSLT and XPath.
XPath transforms permit the signer to derive an XML document that
omits portions of the source document. Consequently those excluded
portions can change without affecting signature validity. For
example, if the resource being signed encloses the signature itself,
such a transform must be used to exclude the signature value from its
own computation. If no Transforms element is present, the resource's
content is digested directly. While we specify mandatory (and
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
optional) canonicalization and decoding algorithms, user specified
transforms are permitted.
[<a id="ref-s09-10">s09-10</a>] DigestMethod is the algorithm applied to the data after
Transforms is applied (if specified) to yield the DigestValue. The
signing of the DigestValue is what binds a resources content to the
signer's key.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a> Extended Example (Object and SignatureProperty)</span>
This specification does not address mechanisms for making statements
or assertions. Instead, this document defines what it means for
something to be signed by an XML Signature (message authentication,
integrity, and/or signer authentication). Applications that wish to
represent other semantics must rely upon other technologies, such as
[XML, RDF]. For instance, an application might use a foo:assuredby
attribute within its own markup to reference a Signature element.
Consequently, it's the application that must understand and know how
to make trust decisions given the validity of the signature and the
meaning of assuredby syntax. We also define a SignatureProperties
element type for the inclusion of assertions about the signature
itself (e.g., signature semantics, the time of signing or the serial
number of hardware used in cryptographic processes). Such assertions
may be signed by including a Reference for the SignatureProperties in
SignedInfo. While the signing application should be very careful
about what it signs (it should understand what is in the
SignatureProperty) a receiving application has no obligation to
understand that semantic (though its parent trust engine may wish
to). Any content about the signature generation may be located
within the SignatureProperty element. The mandatory Target attribute
references the Signature element to which the property applies.
Consider the preceding example with an additional reference to a
local Object that includes a SignatureProperty element. (Such a
signature would not only be detached [p02] but enveloping [p03].)
[ ] <Signature Id="MySecondSignature" ...>
[p01] <SignedInfo>
[ ] ...
[p02] <Reference URI="http://www.w3.org/TR/xml-stylesheet/">
[ ] ...
[p03] <Reference URI="#AMadeUpTimeStamp"
[<a href="#ref-p04">p04</a>] Type="http://www.w3.org/2000/09/
xmldsig#SignatureProperties">
[p05] <DigestMethod Algorithm="http://www.w3.org/2000/09/
xmldsig#sha1"/>
[p06] <DigestValue>k3453rvEPO0vKtMup4NbeVu8nk=</DigestValue>
[p07] </Reference>
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
[<a id="ref-p08">p08</a>] </SignedInfo>
[p09] ...
[<a href="#ref-p10">p10</a>] <Object>
[p11] <SignatureProperties>
[p12] <SignatureProperty Id="AMadeUpTimeStamp"
Target="#MySecondSignature">
[p13] <timestamp xmlns="http://www.ietf.org/rfc3075.txt">
[p14] <date>19990908</date>
[p15] <time>14:34:34:34</time>
[p16] </timestamp>
[p17] </SignatureProperty>
[p18] </SignatureProperties>
[p19] </Object>
[p20]</Signature>
[<a id="ref-p04">p04</a>] The optional Type attribute of Reference provides information
about the resource identified by the URI. In particular, it can
indicate that it is an Object, SignatureProperty, or Manifest
element. This can be used by applications to initiate special
processing of some Reference elements. References to an XML data
element within an Object element SHOULD identify the actual element
pointed to. Where the element content is not XML (perhaps it is
binary or encoded data) the reference should identify the Object and
the Reference Type, if given, SHOULD indicate Object. Note that Type
is advisory and no action based on it or checking of its correctness
is required by core behavior.
[<a id="ref-p10">p10</a>] Object is an optional element for including data objects within
the signature element or elsewhere. The Object can be optionally
typed and/or encoded.
[<a id="ref-p11-18">p11-18</a>] Signature properties, such as time of signing, can be
optionally signed by identifying them from within a Reference.
(These properties are traditionally called signature "attributes"
although that term has no relationship to the XML term "attribute".)
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a> Extended Example (Object and Manifest)</span>
The Manifest element is provided to meet additional requirements not
directly addressed by the mandatory parts of this specification. Two
requirements and the way the Manifest satisfies them follows.
First, applications frequently need to efficiently sign multiple data
objects even where the signature operation itself is an expensive
public key signature. This requirement can be met by including
multiple Reference elements within SignedInfo since the inclusion of
each digest secures the data digested. However, some applications
may not want the core validation behavior associated with this
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
approach because it requires every Reference within SignedInfo to
undergo reference validation -- the DigestValue elements are checked.
These applications may wish to reserve reference validation decision
logic to themselves. For example, an application might receive a
signature valid SignedInfo element that includes three Reference
elements. If a single Reference fails (the identified data object
when digested does not yield the specified DigestValue) the signature
would fail core validation. However, the application may wish to
treat the signature over the two valid Reference elements as valid or
take different actions depending on which fails. To accomplish this,
SignedInfo would reference a Manifest element that contains one or
more Reference elements (with the same structure as those in
SignedInfo). Then, reference validation of the Manifest is under
application control.
Second, consider an application where many signatures (using
different keys) are applied to a large number of documents. An
inefficient solution is to have a separate signature (per key)
repeatedly applied to a large SignedInfo element (with many
References); this is wasteful and redundant. A more efficient
solution is to include many references in a single Manifest that is
then referenced from multiple Signature elements.
The example below includes a Reference that signs a Manifest found
within the Object element.
[ ] ...
[m01] <Reference URI="#MyFirstManifest"
[m02] Type="http://www.w3.org/2000/09/xmldsig#Manifest">
[m03] <DigestMethod Algorithm="http://www.w3.org/2000/09/
xmldsig#sha1"/>
[m04] <DigestValue>345x3rvEPO0vKtMup4NbeVu8nk=</DigestValue>
[m05] </Reference>
[ ] ...
[m06] <Object>
[m07] <Manifest Id="MyFirstManifest">
[m08] <Reference>
[m09] ...
[m10] </Reference>
[m11] <Reference>
[m12] ...
[m13] </Reference>
[m14] </Manifest>
[m15] </Object>
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<span class="h3"><a class="selflink" id="section-3.0" href="#section-3.0">3.0</a> Processing Rules</span>
The sections below describe the operations to be performed as part of
signature generation and validation.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a> Core Generation</span>
The REQUIRED steps include the generation of Reference elements and
the SignatureValue over SignedInfo.
<span class="h4"><a class="selflink" id="section-3.1.1" href="#section-3.1.1">3.1.1</a> Reference Generation</span>
For each data object being signed:
1. Apply the Transforms, as determined by the application, to the
data object.
2. Calculate the digest value over the resulting data object.
3. Create a Reference element, including the (optional)
identification of the data object, any (optional) transform
elements, the digest algorithm and the DigestValue.
<span class="h4"><a class="selflink" id="section-3.1.2" href="#section-3.1.2">3.1.2</a> Signature Generation</span>
1. Create SignedInfo element with SignatureMethod,
CanonicalizationMethod and Reference(s).
2. Canonicalize and then calculate the SignatureValue over SignedInfo
based on algorithms specified in SignedInfo.
3. Construct the Signature element that includes SignedInfo,
Object(s) (if desired, encoding may be different than that used
for signing), KeyInfo (if required), and SignatureValue.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a> Core Validation</span>
The REQUIRED steps of core validation include (1) reference
validation, the verification of the digest contained in each
Reference in SignedInfo, and (2) the cryptographic signature
validation of the signature calculated over SignedInfo.
Note, there may be valid signatures that some signature applications
are unable to validate. Reasons for this include failure to
implement optional parts of this specification, inability or
unwillingness to execute specified algorithms, or inability or
unwillingness to dereference specified URIs (some URI schemes may
cause undesirable side effects), etc.
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<span class="h4"><a class="selflink" id="section-3.2.1" href="#section-3.2.1">3.2.1</a> Reference Validation</span>
For each Reference in SignedInfo:
1. Canonicalize the SignedInfo element based on the
CanonicalizationMethod in SignedInfo.
2. Obtain the data object to be digested. (The signature application
may rely upon the identification (URI) and Transforms provided by
the signer in the Reference element, or it may obtain the content
through other means such as a local cache.)
3. Digest the resulting data object using the DigestMethod specified
in its Reference specification.
4. Compare the generated digest value against DigestValue in the
SignedInfo Reference; if there is any mismatch, validation fails.
Note, SignedInfo is canonicalized in step 1 to ensure the application
Sees What is Signed, which is the canonical form. For instance, if
the CanonicalizationMethod rewrote the URIs (e.g., absolutizing
relative URIs) the signature processing must be cognizant of this.
<span class="h4"><a class="selflink" id="section-3.2.2" href="#section-3.2.2">3.2.2</a> Signature Validation</span>
1. Obtain the keying information from KeyInfo or from an external
source.
2. Obtain the canonical form of the SignatureMethod using the
CanonicalizationMethod and use the result (and previously obtained
KeyInfo) to validate the SignatureValue over the SignedInfo
element.
Note, KeyInfo (or some transformed version thereof) may be signed via
a Reference element. Transformation and validation of this reference
(3.2.1) is orthogonal to Signature Validation which uses the KeyInfo
as parsed.
Additionally, the SignatureMethod URI may have been altered by the
canonicalization of SignedInfo (e.g., absolutization of relative
URIs) and it is the canonical form that MUST be used. However, the
required canonicalization [XML-C14N] of this specification does not
change URIs.
<span class="h3"><a class="selflink" id="section-4.0" href="#section-4.0">4.0</a> Core Signature Syntax</span>
The general structure of an XML signature is described in Signature
Overview (<a href="#section-2">section 2</a>). This section provides detailed syntax of the
core signature features. Features described in this section are
mandatory to implement unless otherwise indicated. The syntax is
defined via DTDs and [XML-Schema] with the following XML preamble,
declaration, internal entity, and simpleType:
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
Schema Definition:
<!DOCTYPE schema
PUBLIC "-//W3C//DTD XMLSCHEMA 200010//EN"
"<a href="http://www.w3.org/2000/10/XMLSchema.dtd">http://www.w3.org/2000/10/XMLSchema.dtd</a>"
[
<!ATTLIST schema
xmlns:ds CDATA #FIXED "<a href="http://www.w3.org/2000/09/xmldsig#">http://www.w3.org/2000/09/xmldsig#</a>">
<!ENTITY dsig 'http://www.w3.org/2000/09/xmldsig#'>
]>
<schema xmlns="http://www.w3.org/2000/10/XMLSchema"
xmlns:ds="&dsig;"
targetNamespace="&dsig;"
version="0.1"
elementFormDefault="qualified">
<!-- Basic Types Defined for Signatures -->
<simpleType name="CryptoBinary">
<restriction base="binary">
<encoding value="base64"/>
</restriction>
</simpleType>
DTD:
<!-- These entity declarations permit the flexible parts of Signature
content model to be easily expanded -->
<!ENTITY % Object.ANY '(#PCDATA|Signature|SignatureProperties|
Manifest)*'>
<!ENTITY % Method.ANY '(#PCDATA|HMACOutputLength)*'>
<!ENTITY % Transform.ANY '(#PCDATA|XPath|XSLT)'>
<!ENTITY % SignatureProperty.ANY '(#PCDATA)*'>
<!ENTITY % Key.ANY '(#PCDATA|KeyName|KeyValue|RetrievalMethod|
X509Data|PGPData|MgmtData|DSAKeyValue|RSAKeyValue)*'>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a> The Signature element</span>
The Signature element is the root element of an XML Signature.
Signature elements MUST be laxly schema valid [XML-schema] with
respect to the following schema definition:
Schema Definition:
<element name="Signature">
<complexType>
<sequence>
<element ref="ds:SignedInfo"/>
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<element ref="ds:SignatureValue"/>
<element ref="ds:KeyInfo" minOccurs="0"/>
<element ref="ds:Object" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="Id" type="ID" use="optional"/>
</complexType>
</element>
DTD:
<!ELEMENT Signature (SignedInfo, SignatureValue, KeyInfo?, Object*) >
<!ATTLIST Signature
xmlns CDATA #FIXED 'http://www.w3.org/2000/09/xmldsig#'
Id ID #IMPLIED >
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a> The SignatureValue Element</span>
The SignatureValue element contains the actual value of the digital
signature; it is always encoded using base64 [MIME]. While we
specify a mandatory and optional to implement SignatureMethod
algorithms, user specified algorithms are permitted. Schema
Definition:
<element name="SignatureValue" type="ds:CryptoBinary"/>
DTD:
<!ELEMENT SignatureValue (#PCDATA) >
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a> The SignedInfo Element</span>
The structure of SignedInfo includes the canonicalization algorithm,
a signature algorithm, and one or more references. The SignedInfo
element may contain an optional ID attribute that will allow it to be
referenced by other signatures and objects.
SignedInfo does not include explicit signature or digest properties
(such as calculation time, cryptographic device serial number, etc.).
If an application needs to associate properties with the signature or
digest, it may include such information in a SignatureProperties
element within an Object element.
Schema Definition:
<element name="SignedInfo">
<complexType>
<sequence>
<element ref="ds:CanonicalizationMethod"/>
<element ref="ds:SignatureMethod"/>
<element ref="ds:Reference" maxOccurs="unbounded"/>
</sequence>
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<attribute name="Id" type="ID" use="optional"/>
</complexType>
</element>
DTD:
<!ELEMENT SignedInfo (CanonicalizationMethod,
SignatureMethod, Reference+) >
<!ATTLIST SignedInfo
Id ID #IMPLIED>
<span class="h4"><a class="selflink" id="section-4.3.1" href="#section-4.3.1">4.3.1</a> The CanonicalizationMethod Element</span>
CanonicalizationMethod is a required element that specifies the
canonicalization algorithm applied to the SignedInfo element prior to
performing signature calculations. This element uses the general
structure for algorithms described in Algorithm Identifiers and
Implementation Requirements (<a href="#section-6.1">section 6.1</a>). Implementations MUST
support the REQUIRED Canonical XML [XML-C14N] method.
Alternatives to the REQUIRED Canonical XML algorithm (<a href="#section-6.5.2">section 6.5.2</a>),
such as Canonical XML with Comments (<a href="#section-6.5.2">section 6.5.2</a>) and Minimal
Canonicalization (the CRLF and charset normalization specified in
<a href="#section-6.5.1">section 6.5.1</a>), may be explicitly specified but are NOT REQUIRED.
Consequently, their use may not interoperate with other applications
that do no support the specified algorithm (see XML Canonicalization
and Syntax Constraint Considerations, <a href="#section-7">section 7</a>). Security issues
may also arise in the treatment of entity processing and comments if
minimal or other non-XML aware canonicalization algorithms are not
properly constrained (see <a href="#section-8.2">section 8.2</a>: Only What is "Seen" Should be
Signed).
The way in which the SignedInfo element is presented to the
canonicalization method is dependent on that method. The following
applies to the two types of algorithms specified by this document:
* Canonical XML [XML-C14N] (with or without comments)
implementation MUST be provided with an XPath node-set
originally formed from the document containing the SignedInfo
and currently indicating the SignedInfo, its descendants, and
the attribute and namespace nodes of SignedInfo and its
descendant elements (such that the namespace context and
similar ancestor information of the SignedInfo is preserved).
* Minimal canonicalization implementations MUST be provided with
the octets that represent the well-formed SignedInfo element,
from the first character to the last character of the XML
representation, inclusive. This includes the entire text of
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
the start and end tags of the SignedInfo element as well as all
descendant markup and character data (i.e., the text) between
those tags.
We RECOMMEND that resource constrained applications that do not
implement the Canonical XML [XML-C14N] algorithm and instead choose
minimal canonicalization (or some other form) be implemented to
generate Canonical XML as their output serialization so as to easily
mitigate some of these interoperability and security concerns.
(While a result might not be the canonical form of the original, it
can still be in canonical form.) For instance, such an
implementation SHOULD (at least) generate standalone XML instances
[XML].
Schema Definition:
<element name="CanonicalizationMethod">
<complexType>
<sequence>
<any namespace="##any" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="Algorithm" type="uriReference" use="required"/>
</complexType>
</element>
DTD:
<!ELEMENT CanonicalizationMethod %Method.ANY; >
<!ATTLIST CanonicalizationMethod
Algorithm CDATA #REQUIRED >
<span class="h4"><a class="selflink" id="section-4.3.2" href="#section-4.3.2">4.3.2</a> The SignatureMethod Element</span>
SignatureMethod is a required element that specifies the algorithm
used for signature generation and validation. This algorithm
identifies all cryptographic functions involved in the signature
operation (e.g., hashing, public key algorithms, MACs, padding,
etc.). This element uses the general structure here for algorithms
described in <a href="#section-6.1">section 6.1</a>: Algorithm Identifiers and Implementation
Requirements. While there is a single identifier, that identifier
may specify a format containing multiple distinct signature values.
Schema Definition:
<element name="SignatureMethod">
<complexType>
<sequence>
<any namespace="##any" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="Algorithm" type="uriReference" use="required"/>
</complexType>
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
</element>
DTD:
<!ELEMENT SignatureMethod %Method.ANY; >
<!ATTLIST SignatureMethod
Algorithm CDATA #REQUIRED >
<span class="h4"><a class="selflink" id="section-4.3.3" href="#section-4.3.3">4.3.3</a> The Reference Element</span>
Reference is an element that may occur one or more times. It
specifies a digest algorithm and digest value, and optionally an
identifier of the object being signed, the type of the object, and/or
a list of transforms to be applied prior to digesting. The
identification (URI) and transforms describe how the digested content
(i.e., the input to the digest method) was created. The Type
attribute facilitates the processing of referenced data. For
example, while this specification makes no requirements over external
data, an application may wish to signal that the referent is a
Manifest. An optional ID attribute permits a Reference to be
referenced from elsewhere.
Schema Definition:
<element name="Reference">
<complexType>
<sequence>
<element ref="ds:Transforms" minOccurs="0"/>
<element ref="ds:DigestMethod"/>
<element ref="ds:DigestValue"/>
</sequence>
<attribute name="Id" type="ID" use="optional"/>
<attribute name="URI" type="uriReference" use="optional"/>
<attribute name="Type" type="uriReference" use="optional"/>
</complexType>
</element>
DTD:
<!ELEMENT Reference (Transforms?, DigestMethod, DigestValue) >
<!ATTLIST Reference
Id ID #IMPLIED
URI CDATA #IMPLIED
Type CDATA #IMPLIED >
<span class="h5"><a class="selflink" id="section-4.3.3.1" href="#section-4.3.3.1">4.3.3.1</a> The URI Attribute</span>
The URI attribute identifies a data object using a URI-Reference, as
specified by <a href="./rfc2396">RFC2396</a> [URI]. The set of allowed characters for URI
attributes is the same as for XML, namely [Unicode]. However, some
Unicode characters are disallowed from URI references including all
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
non-ASCII characters and the excluded characters listed in <a href="./rfc2396">RFC2396</a>
[URI, <a href="#section-2.4">section 2.4</a>]. However, the number sign (#), percent sign (%),
and square bracket characters re-allowed in <a href="./rfc2732">RFC 2732</a> [URI-Literal]
are permitted. Disallowed characters must be escaped as follows:
1. Each disallowed character is converted to [UTF-8] as one or more
bytes.
2. Any octets corresponding to a disallowed character are escaped
with the URI escaping mechanism (that is, converted to %HH, where
HH is the hexadecimal notation of the byte value).
3. The original character is replaced by the resulting character
sequence.
XML signature applications MUST be able to parse URI syntax. We
RECOMMEND they be able to dereference URIs in the HTTP scheme.
Dereferencing a URI in the HTTP scheme MUST comply with the Status
Code Definitions of [HTTP] (e.g., 302, 305 and 307 redirects are
followed to obtain the entity-body of a 200 status code response).
Applications should also be cognizant of the fact that protocol
parameter and state information, (such as a HTTP cookies, HTML device
profiles or content negotiation), may affect the content yielded by
dereferencing a URI.
If a resource is identified by more than one URI, the most specific
should be used (e.g. <a href="http://www.w3.org/2000/06/interop-pressrelease.html.en">http://www.w3.org/2000/06/interop-</a>
<a href="http://www.w3.org/2000/06/interop-pressrelease.html.en">pressrelease.html.en</a> instead of <a href="http://www.w3.org/2000/06/interop-pressrelease">http://www.w3.org/2000/06/interop-</a>
<a href="http://www.w3.org/2000/06/interop-pressrelease">pressrelease</a>). (See the Reference Validation (<a href="#section-3.2.1">section 3.2.1</a>) for a
further information on reference processing.)
If the URI attribute is omitted altogether, the receiving application
is expected to know the identity of the object. For example, a
lightweight data protocol might omit this attribute given the
identity of the object is part of the application context. This
attribute may be omitted from at most one Reference in any particular
SignedInfo, or Manifest.
The optional Type attribute contains information about the type of
object being signed. This is represented as a URI. For example:
Type="http://www.w3.org/2000/09/xmldsig#Object"
Type="http://www.w3.org/2000/09/xmldsig#Manifest"
The Type attribute applies to the item being pointed at, not its
contents. For example, a reference that identifies an Object element
containing a SignatureProperties element is still of type #Object.
The type attribute is advisory. No validation of the type
information is required by this specification.
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<span class="h5"><a class="selflink" id="section-4.3.3.2" href="#section-4.3.3.2">4.3.3.2</a> The Reference Processing Model</span>
Note: XPath is RECOMMENDED. Signature applications need not conform
to [XPath] specification in order to conform to this specification.
However, the XPath data model, definitions (e.g., node-sets) and
syntax is used within this document in order to describe
functionality for those that want to process XML-as-XML (instead of
octets) as part of signature generation. For those that want to use
these features, a conformant [XPath] implementation is one way to
implement these features, but it is not required. Such applications
could use a sufficiently functional replacement to a node-set and
implement only those XPath expression behaviors REQUIRED by this
specification. However, for simplicity we generally will use XPath
terminology without including this qualification on every point.
Requirements over "XPath nodesets" can include a node-set functional
equivalent. Requirements over XPath processing can include
application behaviors that are equivalent to the corresponding XPath
behavior.
The data-type of the result of URI dereferencing or subsequent
Transforms is either an octet stream or an XPath node-set.
The Transforms specified in this document are defined with respect to
the input they require. The following is the default signature
application behavior:
* If the data object is a an octet stream and the next
transformrequires a node-set, the signature application MUST
attempt to parse the octets.
* If the data object is a node-set and the next transformrequires
octets, the signature application MUST attempt to convert the
node-set to an octet stream using the REQUIRED canonicalization
algorithm [XML-C14N].
Users may specify alternative transforms that over-ride these
defaults in transitions between Transforms that expect different
inputs. The final octet stream contains the data octets being
secured. The digest algorithm specified by DigestMethod is then
applied to these data octets, resulting in the DigestValue.
Unless the URI-Reference is a 'same-document' reference as defined in
[URI, <a href="#section-4.2">Section 4.2</a>], the result of dereferencing the URI-Reference
MUST be an octet stream. In particular, an XML document identified
by URI is not parsed by the signature application unless the URI is a
same-document reference or unless a transformthat requires XML
parsing is applied (See Transforms (<a href="#section-4.3.3.1">section 4.3.3.1</a>).)
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
When a fragment is preceded by an absolute or relative URI in the
URI-Reference, the meaning of the fragment is defined by the
resource's MIME type. Even for XML documents, URI dereferencing
(including the fragment processing) might be done for the signature
application by a proxy. Therefore, reference validation might fail
if fragment processing is not performed in a standard way (as defined
in the following section for same-document references).
Consequently, we RECOMMEND that the URI attribute not include
fragment identifiers and that such processing be specified as an
additional XPath Transform.
When a fragment is not preceded by a URI in the URI-Reference, XML
signature applications MUST support the null URI and barename
XPointer. We RECOMMEND support for the same-document XPointers
'#xpointer(/)' and '#xpointer(id("ID"))' if the application also
intends to support Minimal Canonicalization or Canonical XML with
Comments. (Otherwise URI="#foo" will automatically remove comments
before the Canonical XML with Comments can even be invoked.) All
other support for XPointers is OPTIONAL, especially all support for
barename and other XPointers in external resources since the
application may not have control over how the fragment is generated
(leading to interoperability problems and validation failures).
The following examples demonstrate what the URI attribute identifies
and how it is dereferenced:
URI="http://example.com/bar.xml"
Identifies the octets that represent the external resource
'http//example.com/bar.xml', that is probably XML document
given its file extension.
URI="http://example.com/bar.xml#chapter1"
Identifies the element with ID attribute value 'chapter1' of
the external XML resource 'http://example.com/bar.xml',
provided as an octet stream. Again, for the sake of
interoperability, the element identified as 'chapter1' should
be obtained using an XPath transformrather than a URI fragment
(barename XPointer resolution in external resources is not
REQUIRED in this specification).
URI=""
Identifies the nodeset (minus any comment nodes) of the XML
resource containing the signature
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
URI="#chapter1"
Identifies a nodeset containing the element with ID attribute
value 'chapter1' of the XML resource containing the signature.
XML Signature (and its applications) modify this nodeset to
include the element plus all descendents including namespaces
and attributes -- but not comments.
<span class="h5"><a class="selflink" id="section-4.3.3.3" href="#section-4.3.3.3">4.3.3.3</a> Same-Document URI-References</span>
Dereferencing a same-document reference MUST result in an XPath
node-set suitable for use by Canonical XML. Specifically,
dereferencing a null URI (URI="") MUST result in an XPath node-set
that includes every non-comment node of the XML document containing
the URI attribute. In a fragment URI, the characters after the
number sign ('#') character conform to the XPointer syntax [Xptr].
When processing an XPointer, the application MUST behave as if the
root node of the XML document containing the URI attribute were used
to initialize the XPointer evaluation context. The application MUST
behave as if the result of XPointer processing were a node-set
derived from the resultant location-set as follows:
1. discard point nodes
2. replace each range node with all XPath nodes having full or
partial content within the range
3. replace the root node with its children (if it is in the node-set)
4. replace any element node E with E plus all descendants of E (text,
comment, PI, element) and all namespace and attribute nodes of E
and its descendant elements.
5. if the URI is not a full XPointer, then delete all comment nodes
The second to last replacement is necessary because XPointer
typically indicates a subtree of an XML document's parse tree using
just the element node at the root of the subtree, whereas Canonical
XML treats a node-set as a set of nodes in which absence of
descendant nodes results in absence of their representative text from
the canonical form.
The last step is performed for null URIs, barename XPointers and
child sequence XPointers. To retain comments while selecting an
element by an identifier ID, use the following full XPointer:
URI='#xpointer(id("ID"))'. To retain comments while selecting the
entire document, use the following full XPointer: URI='#xpointer(/)'.
This XPointer contains a simple XPath expression that includes the
root node, which the second to last step above replaces with all
nodes of the parse tree (all descendants, plus all attributes, plus
all namespaces nodes).
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<span class="h5"><a class="selflink" id="section-4.3.3.4" href="#section-4.3.3.4">4.3.3.4</a> The Transforms Element</span>
The optional Transforms element contains an ordered list of Transform
elements; these describe how the signer obtained the data object that
was digested. The output of each Transform serves as input to the
next Transform. The input to the first Transform is the result of
dereferencing the URI attribute of the Reference element. The output
from the last Transform is the input for the DigestMethod algorithm.
When transforms are applied the signer is not signing the native
(original) document but the resulting (transformed) document. (See
Only What is Signed is Secure (<a href="#section-8.1">section 8.1</a>).)
Each Transform consists of an Algorithm attribute and content
parameters, if any, appropriate for the given algorithm. The
Algorithm attribute value specifies the name of the algorithm to be
performed, and the Transform content provides additional data to
govern the algorithm's processing of the transform input. (See
Algorithm Identifiers and Implementation Requirements (<a href="#section-6">section 6</a>).)
As described in The Reference Processing Model (section 4.3.3.2),
some transforms take an XPath node-set as input, while others require
an octet stream. If the actual input matches the input needs of the
transform, then the transform operates on the unaltered input. If
the transform input requirement differs from the format of the actual
input, then the input must be converted.
Some Transform may require explicit MIME type, charset (IANA
registered "character set"), or other such information concerning the
data they are receiving from an earlier Transform or the source data,
although no Transform algorithm specified in this document needs such
explicit information. Such data characteristics are provided as
parameters to the Transform algorithm and should be described in the
specification for the algorithm.
Examples of transforms include but are not limited to base64 decoding
[MIME], canonicalization [XML-C14N], XPath filtering [XPath], and
XSLT [XSLT]. The generic definition of the Transform element also
allows application-specific transform algorithms. For example, the
transform could be a decompression routine given by a Java class
appearing as a base64 encoded parameter to a Java Transform
algorithm. However, applications should refrain from using
application-specific transforms if they wish their signatures to be
verifiable outside of their application domain. Transform Algorithms
(<a href="#section-6.6">section 6.6</a>) defines the list of standard transformations.
Schema Definition:
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<element name="Transforms">
<complexType>
<sequence>
<element ref="ds:Transform" maxOccurs="unbounded"/>
</sequence>
</complexType>
</element>
<element name="Transform">
<complexType>
<choice maxOccurs="unbounded">
<any namespace="##other" processContents="lax" minOccurs="0"
maxOccurs="unbounded"/>
<element name="XSLT" type="string"/>
<!-- should be an xsl:stylesheet element -->
<element name="XPath" type="string"/>
</choice>
<attribute name="Algorithm" type="uriReference" use="required"/>
</complexType>
</element>
DTD:
<!ELEMENT Transforms (Transform+)>
<!ELEMENT Transform %Transform.ANY; >
<!ATTLIST Transform
Algorithm CDATA #REQUIRED >
<!ELEMENT XPath (#PCDATA) >
<!ELEMENT XSLT (#PCDATA) >
<span class="h5"><a class="selflink" id="section-4.3.3.5" href="#section-4.3.3.5">4.3.3.5</a> The DigestMethod Element</span>
DigestMethod is a required element that identifies the digest
algorithm to be applied to the signed object. This element uses the
general structure here for algorithms specified in Algorithm
Identifiers and Implementation Requirements (<a href="#section-6.1">section 6.1</a>).
If the result of the URI dereference and application of Transforms is
an XPath node-set (or sufficiently functional replacement implemented
by the application) then it must be converted as described in the
Reference Processing Model (section 4.3.3.2). If the result of URI
dereference and application of Transforms is an octet stream, then no
conversion occurs (comments might be present if the Minimal
Canonicalization or Canonical XML with Comments was specified in the
Transforms). The digest algorithm is applied to the data octets of
the resulting octet stream.
Schema Definition:
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<element name="DigestMethod">
<complexType>
<sequence>
<any namespace="##any" processContents="lax" minOccurs="0"
maxOccurs="unbounded"/>
</sequence>
<attribute name="Algorithm" type="uriReference" use="required"/>
</complexType>
</element>
DTD:
<!ELEMENT DigestMethod %Method.ANY; >
<!ATTLIST DigestMethod
Algorithm CDATA #REQUIRED >
<span class="h5"><a class="selflink" id="section-4.3.3.6" href="#section-4.3.3.6">4.3.3.6</a> The DigestValue Element</span>
DigestValue is an element that contains the encoded value of the
digest. The digest is always encoded using base64 [MIME].
Schema Definition:
<element name="DigestValue" type="ds:CryptoBinary"/>
DTD:
<!ELEMENT DigestValue (#PCDATA) >
<!-- base64 encoded digest value -->
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a> The KeyInfo Element</span>
KeyInfo is an optional element that enables the recipient(s) to
obtain the key needed to validate the signature. KeyInfo may contain
keys, names, certificates and other public key management
information, such as in-band key distribution or key agreement data.
This specification defines a few simple types but applications may
place their own key identification and exchange semantics within this
element type through the XML-namespace facility [XML-ns].
If KeyInfo is omitted, the recipient is expected to be able to
identify the key based on application context information. Multiple
declarations within KeyInfo refer to the same key. While
applications may define and use any mechanism they choose through
inclusion of elements from a different namespace, compliant versions
MUST implement KeyValue (<a href="#section-4.4.2">section 4.4.2</a>) and SHOULD implement
RetrievalMethod (<a href="#section-4.4.3">section 4.4.3</a>).
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
The following list summarizes the KeyInfo types defined by this
specification; these can be used within the RetrievalMethod Type
attribute to describe the remote KeyInfo structure as represented as
an octect stream.
* <a href="http://www.w3.org/2000/09/xmldsig#X509Data">http://www.w3.org/2000/09/xmldsig#X509Data</a>
* <a href="http://www.w3.org/2000/09/xmldsig#PGPData">http://www.w3.org/2000/09/xmldsig#PGPData</a>
* <a href="http://www.w3.org/2000/09/xmldsig#SPKIData">http://www.w3.org/2000/09/xmldsig#SPKIData</a>
* <a href="http://www.w3.org/2000/09/xmldsig#MgmtData">http://www.w3.org/2000/09/xmldsig#MgmtData</a>
In addition to the types above for which we define structures, we
specify one additional type to indicate a binary X.509 Certificate
* <a href="http://www.w3.org/2000/09/xmldsig#rawX509Certificate">http://www.w3.org/2000/09/xmldsig#rawX509Certificate</a>
Schema Definition:
<element name="KeyInfo">
<complexType>
<choice maxOccurs="unbounded">
<any processContents="lax" namespace="##other" minOccurs="0"
maxOccurs="unbounded"/>
<element name="KeyName" type="string"/>
<element ref="ds:KeyValue"/>
<element ref="ds:RetrievalMethod"/>
<element ref="ds:X509Data"/>
<element ref="ds:PGPData"/>
<element ref="ds:SPKIData"/>
<element name="MgmtData" type="string"/>
</choice>
<attribute name="Id" type="ID" use="optional"/>
</complexType>
</element>
DTD:
<!ELEMENT KeyInfo %Key.ANY; >
<!ATTLIST KeyInfo
Id ID #IMPLIED >
<span class="h4"><a class="selflink" id="section-4.4.1" href="#section-4.4.1">4.4.1</a> The KeyName Element</span>
The KeyName element contains a string value which may be used by the
signer to communicate a key identifier to the recipient. Typically,
KeyName contains an identifier related to the key pair used to sign
the message, but it may contain other protocol-related information
that indirectly identifies a key pair. (Common uses of KeyName
include simple string names for keys, a key index, a distinguished
name (DN), an email address, etc.)
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
Schema Definition:
<!-- type declared in KeyInfo -->
DTD:
<!ELEMENT KeyName (#PCDATA) >
<span class="h4"><a class="selflink" id="section-4.4.2" href="#section-4.4.2">4.4.2</a> The KeyValue Element</span>
The KeyValue element contains a single public key that may be useful
in validating the signature. Structured formats for defining DSA
(REQUIRED) and RSA (RECOMMENDED) public keys are defined in Signature
Algorithms (<a href="#section-6.4">section 6.4</a>).
Schema Definition:
<element name="KeyValue">
<complexType mixed="true">
<choice>
<any namespace="##other" processContents="lax" minOccurs="0"
maxOccurs="unbounded"/>
<element ref="ds:DSAKeyValue"/>
<element ref="ds:RSAKeyValue"/>
</choice>
</complexType>
</element>
DTD:
<!ELEMENT KeyValue %Key.ANY; >
<span class="h4"><a class="selflink" id="section-4.4.3" href="#section-4.4.3">4.4.3</a> The RetrievalMethod Element</span>
A RetrievalMethod element within KeyInfo is used to convey a
reference to KeyInfo information that is stored at another location.
For example, several signatures in a document might use a key
verified by an X.509v3 certificate chain appearing once in the
document or remotely outside the document; each signature's KeyInfo
can reference this chain using a single RetrievalMethod element
instead of including the entire chain with a sequence of
X509Certificate elements.
RetrievalMethod uses the same syntax and dereferencing behavior as
Reference's URI (<a href="#section-4.3.3.1">section 4.3.3.1</a>) and The Reference Processing Model
(<a href="#section-4.3.3.2">section 4.3.3.2</a>) except that there is no DigestMethod or DigestValue
child elements and presence of the URI is mandatory. Note, if the
result of dereferencing and transforming the specified URI is a node
set, then it may need to be to be canonicalized. All of the KeyInfo
types defined by this specification (<a href="#section-4.4">section 4.4</a>) represent octets,
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
consequently the Signature application is expected to attempt to
canonicalize the nodeset via the The Reference Processing Model
(<a href="#section-4.3.3.2">section 4.3.3.2</a>)
Type is an optional identifier for the type of data to be retrieved.
Schema Definition
<element name="RetrievalMethod">
<complexType>
<sequence>
<element ref="ds:Transforms" minOccurs="0"/>
</sequence>
<attribute name="URI" type="uriReference"/>
<attribute name="Type" type="uriReference" use="optional"/>
</complexType>
</element>
DTD
<!ELEMENT RetrievalMethod (Transforms?) >
<!ATTLIST RetrievalMethod
URI CDATA #REQUIRED
Type CDATA #IMPLIED >
<span class="h4"><a class="selflink" id="section-4.4.4" href="#section-4.4.4">4.4.4</a> The X509Data Element</span>
Identifier
Type="http://www.w3.org/2000/09/xmldsig#X509Data"
(this can be used within a RetrievalMethod or Reference element
to identify the referent's type)
An X509Data element within KeyInfo contains one or more identifiers
of keys or X509 certificates (or certificates' identifiers or
revocation lists). Five types of X509Data are defined
1. The X509IssuerSerial element, which contains an X.509 issuer
distinguished name/serial number pair that SHOULD be compliant
with <a href="./rfc2253">RFC2253</a> [LDAP-DN],
2. The X509SubjectName element, which contains an X.509 subject
distinguished name that SHOULD be compliant with <a href="./rfc2253">RFC2253</a> [LDAP-
DN],
3. The X509SKI element, which contains an X.509 subject key
identifier value.
4. The X509Certificate element, which contains a base64-encoded
[X509v3] certificate, and
5. The X509CRL element, which contains a base64-encoded certificate
revocation list (CRL) [X509v3].
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
Multiple declarations about a single certificate (e.g., a
X509SubjectName and X509IssuerSerial element) MUST be grouped inside
a single X509Data element; multiple declarations about the same key
but different certificates (related to that single key) MUST be
grouped within a single KeyInfo element but MAY occur in multiple
X509Data elements. For example, the following block contains two
pointers to certificate-A (issuer/serial number and SKI) and a single
reference to certificate-B (SubjectName) and also shows use of
certificate elements
<KeyInfo>
<X509Data> <!-- two pointers to certificate-A -->
<X509IssuerSerial>
<X509IssuerName>CN=TAMURA Kent, OU=TRL, O=IBM,
L=Yamato-shi, ST=Kanagawa, C=JP</X509IssuerName>
<X509SerialNumber>12345678</X509SerialNumber>
</X509IssuerSerial>
<X509SKI>31d97bd7</X509SKI>
</X509Data>
<X509Data> <!-- single pointer to certificate-B -->
<X509SubjectName>Subject of Certificate B</X509SubjectName>
</X509Data> <!-- certificate chain -->
<!--Signer cert, issuer CN=arbolCA,OU=FVT,O=IBM,C=US, serial 4-->
<X509Certificate>MIICXTCCA..</X509Certificate>
<!-- Intermediate cert subject CN=arbolCA,OU=FVTO=IBM,C=US
issuer,CN=tootiseCA,OU=FVT,O=Bridgepoint,C=US -->
<X509Certificate>MIICPzCCA...</X509Certificate>
<!-- Root cert subject CN=tootiseCA,OU=FVT,O=Bridgepoint,C=US -->
<X509Certificate>MIICSTCCA...</X509Certificate>
</X509Data>
</KeyInfo>
Note, there is no direct provision for a PKCS#7 encoded "bag" of
certificates or CRLs. However, a set of certificates or a CRL can
occur within an X509Data element and multiple X509Data elements can
occur in a KeyInfo. Whenever multiple certificates occur in an
X509Data element, at least one such certificate must contain the
public key which verifies the signature.
Schema Definition
<element name="X509Data">
<complexType>
<choice>
<sequence maxOccurs="unbounded">
<choice>
<element ref="ds:X509IssuerSerial"/>
<element name="X509SKI" type="ds:CryptoBinary"/>
<element name="X509SubjectName" type="string"/>
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<element name="X509Certificate" type="ds:CryptoBinary"/>
</choice>
</sequence>
<element name="X509CRL" type="ds:CryptoBinary"/>
</choice>
</complexType>
</element>
<element name="X509IssuerSerial">
<complexType>
<sequence>
<element name="X509IssuerName" type="string"/>
<element name="X509SerialNumber" type="integer"/>
</sequence>
</complexType>
</element>
DTD
<!ELEMENT X509Data ((X509IssuerSerial | X509SKI | X509SubjectName |
X509Certificate)+ | X509CRL)>
<!ELEMENT X509IssuerSerial (X509IssuerName, X509SerialNumber) >
<!ELEMENT X509IssuerName (#PCDATA) >
<!ELEMENT X509SubjectName (#PCDATA) >
<!ELEMENT X509SerialNumber (#PCDATA) >
<!ELEMENT X509SKI (#PCDATA) >
<!ELEMENT X509Certificate (#PCDATA) >
<!ELEMENT X509CRL (#PCDATA) >
<span class="h4"><a class="selflink" id="section-4.4.5" href="#section-4.4.5">4.4.5</a> The PGPData element</span>
Identifier
Type="http://www.w3.org/2000/09/xmldsig#PGPData"
(this can be used within a RetrievalMethod or Reference element
to identify the referent's type)
The PGPData element within KeyInfo is used to convey information
related to PGP public key pairs and signatures on such keys. The
PGPKeyID's value is a string containing a standard PGP public key
identifier as defined in [PGP, <a href="#section-11.2">section 11.2</a>]. The PGPKeyPacket
contains a base64-encoded Key Material Packet as defined in [PGP,
<a href="#section-5.5">section 5.5</a>]. Other sub-types of the PGPData element may be defined
by the OpenPGP working group.
Schema Definition:
<element name="PGPData">
<complexType>
<choice>
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<any namespace="##other" processContents="lax" minOccurs="0"
maxOccurs="unbounded"/>
<sequence>
<element name="PGPKeyID" type="string"/>
<element name="PGPKeyPacket" type="ds:CryptoBinary"/>
</sequence>
</choice>
</complexType>
</element>
DTD:
<!ELEMENT PGPData (PGPKeyID, PGPKeyPacket) >
<!ELEMENT PGPKeyPacket (#PCDATA) >
<!ELEMENT PGPKeyID (#PCDATA) >
<span class="h4"><a class="selflink" id="section-4.4.6" href="#section-4.4.6">4.4.6</a> The SPKIData element</span>
Identifier
Type="http://www.w3.org/2000/09/xmldsig#SPKIData"
(this can be used within a RetrievalMethod or Reference element
to identify the referent's type)
The SPKIData element within KeyInfo is used to convey information
related to SPKI public key pairs, certificates and other SPKI data.
The content of this element type is expected to be a Canonical S-
expression.
Schema Definition:
<element name="SPKIData" type="string"/>
DTD:
<!ELEMENT SPKIData (#PCDATA) >
<span class="h4"><a class="selflink" id="section-4.4.7" href="#section-4.4.7">4.4.7</a> The MgmtData element</span>
Identifier
Type="http://www.w3.org/2000/09/xmldsig#MgmtData"
(this can be used within a RetrievalMethod or Reference element
to identify the referent's type)
The MgmtData element within KeyInfo is a string value used to convey
in-band key distribution or agreement data. For example, DH key
exchange, RSA key encryption, etc.
Schema Definition:
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<!-- type declared in KeyInfo -->
DTD:
<!ELEMENT MgmtData (#PCDATA)>
<span class="h3"><a class="selflink" id="section-4.5" href="#section-4.5">4.5</a> The Object Element</span>
Identifier
Type="http://www.w3.org/2000/09/xmldsig#Object"
(this can be used within a Reference element to identify the
referent's type)
Object is an optional element that may occur one or more times. When
present, this element may contain any data. The Object element may
include optional MIME type, ID, and encoding attributes.
The MimeType attribute is an optional attribute which describes the
data within the Object. This is a string with values defined by
[MIME]. For example, if the Object contains XML, the MimeType could
be text/xml. This attribute is purely advisory; no validation of the
MimeType information is required by this specification.
The Object's Id is commonly referenced from a Reference in
SignedInfo, or Manifest. This element is typically used for
enveloping signatures where the object being signed is to be included
in the signature element. The digest is calculated over the entire
Object element including start and end tags.
The Object's Encoding attributed may be used to provide a URI that
identifies the method by which the object is encoded (e.g., a binary
file).
Note, if the application wishes to exclude the <Object> tags from the
digest calculation the Reference must identify the actual data object
(easy for XML documents) or a transform must be used to remove the
Object tags (likely where the data object is non-XML). Exclusion of
the object tags may be desired for cases where one wants the
signature to remain valid if the data object is moved from inside a
signature to outside the signature (or vice-versa), or where the
content of the Object is an encoding of an original binary document
and it is desired to extract and decode so as to sign the original
bitwise representation.
Schema Definition:
<element name="Object">
<complexType mixed="true">
<sequence maxOccurs="unbounded">
<any namespace="##any" processContents="lax"/>
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
</sequence>
<attribute name="Id" type="ID" use="optional"/>
<attribute name="MimeType" type="string" use="optional"/>
<!-- add a grep facet -->
<attribute name="Encoding" type="uriReference" use="optional"/>
</complexType>
</element>
DTD:
<!ELEMENT Object %Object.ANY; >
<!ATTLIST Object
Id ID #IMPLIED
MimeType CDATA #IMPLIED
Encoding CDATA #IMPLIED >
<span class="h3"><a class="selflink" id="section-5.0" href="#section-5.0">5.0</a> Additional Signature Syntax</span>
This section describes the optional to implement Manifest and
SignatureProperties elements and describes the handling of XML
processing instructions and comments. With respect to the elements
Manifest and SignatureProperties this section specifies syntax and
little behavior -- it is left to the application. These elements can
appear anywhere the parent's content model permits; the Signature
content model only permits them within Object.
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a> The Manifest Element</span>
Identifier
Type="http://www.w3.org/2000/09/xmldsig#Manifest"
(this can be used within a Reference element to identify the
referent's type)
The Manifest element provides a list of References. The difference
from the list in SignedInfo is that it is application defined which,
if any, of the digests are actually checked against the objects
referenced and what to do if the object is inaccessible or the digest
compare fails. If a Manifest is pointed to from SignedInfo, the
digest over the Manifest itself will be checked by the core signature
validation behavior. The digests within such a Manifest are checked
at the application's discretion. If a Manifest is referenced from
another Manifest, even the overall digest of this two level deep
Manifest might not be checked.
Schema Definition:
<element name="Manifest">
<complexType>
<sequence>
<element ref="ds:Reference" maxOccurs="unbounded"/>
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
</sequence>
<attribute name="Id" type="ID" use="optional"/>
</complexType>
</element>
DTD:
<!ELEMENT Manifest (Reference+) >
<!ATTLIST Manifest
Id ID #IMPLIED >
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a> The SignatureProperties Element</span>
Identifier
Type="http://www.w3.org/2000/09/xmldsig#SignatureProperties"
(this can be used within a Reference element to identify the
referent's type)
Additional information items concerning the generation of the
signature(s) can be placed in a SignatureProperty element (i.e.,
date/time stamp or the serial number of cryptographic hardware used
in signature generation).
Schema Definition:
<element name="SignatureProperties">
<complexType>
<sequence>
<element ref="ds:SignatureProperty" maxOccurs="unbounded"/>
</sequence>
<attribute name="Id" type="ID" use="optional"/>
</complexType>
</element>
<element name="SignatureProperty">
<complexType mixed="true">
<choice minOccurs="0" maxOccurs="unbounded">
<any namespace="##other" processContents="lax" minOccurs="0"
maxOccurs="unbounded"/>
</choice>
<attribute name="Target" type="uriReference" use="required"/>
<attribute name="Id" type="ID" use="optional"/>
</complexType>
</element>
DTD:
<!ELEMENT SignatureProperties (SignatureProperty+) >
<!ATTLIST SignatureProperties
Id ID #IMPLIED >
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<!ELEMENT SignatureProperty %SignatureProperty.ANY >
<!ATTLIST SignatureProperty
Target CDATA #REQUIRED
Id ID #IMPLIED >
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a> Processing Instructions in Signature Elements</span>
No XML processing instructions (PIs) are used by this specification.
Note that PIs placed inside SignedInfo by an application will be
signed unless the CanonicalizationMethod algorithm discards them.
(This is true for any signed XML content.) All of the
CanonicalizationMethods specified within this specification retain
PIs. When a PI is part of content that is signed (e.g., within
SignedInfo or referenced XML documents) any change to the PI will
obviously result in a signature failure.
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a> Comments in Signature Elements</span>
XML comments are not used by this specification.
Note that unless CanonicalizationMethod removes comments within
SignedInfo or any other referenced XML (which [XML-C14N] does), they
will be signed. Consequently, if they are retained, a change to the
comment will cause a signature failure. Similarly, the XML signature
over any XML data will be sensitive to comment changes unless a
comment-ignoring canonicalization/transform method, such as the
Canonical XML [XML-C14N], is specified.
<span class="h3"><a class="selflink" id="section-6.0" href="#section-6.0">6.0</a> Algorithms</span>
This section identifies algorithms used with the XML digital
signature specification. Entries contain the identifier to be used
in Signature elements, a reference to the formal specification, and
definitions, where applicable, for the representation of keys and the
results of cryptographic operations.
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a> Algorithm Identifiers and Implementation Requirements</span>
Algorithms are identified by URIs that appear as an attribute to the
element that identifies the algorithms' role (DigestMethod,
Transform, SignatureMethod, or CanonicalizationMethod). All
algorithms used herein take parameters but in many cases the
parameters are implicit. For example, a SignatureMethod is
implicitly given two parameters: the keying info and the output of
CanonicalizationMethod. Explicit additional parameters to an
algorithm appear as content elements within the algorithm role
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
element. Such parameter elements have a descriptive element name,
which is frequently algorithm specific, and MUST be in the XML
Signature namespace or an algorithm specific namespace.
This specification defines a set of algorithms, their URIs, and
requirements for implementation. Requirements are specified over
implementation, not over requirements for signature use.
Furthermore, the mechanism is extensible, alternative algorithms may
be used by signature applications.
(Note that the normative identifier is the complete URI in the table
though they are sometimes abbreviated in XML syntax (e.g.,
"&dsig;base64").)
Algorithm Type
Algorithm - Requirements - Algorithm URI
Digest
SHA1 - REQUIRED - &dsig;sha1
Encoding
base64 - REQUIRED - &dsig;base64
MAC
HMAC-SHA1 - REQUIRED - &dsig;hmac-sha1
Signature
DSAwithSHA1(DSS) - REQUIRED - &dsig;dsa-sha1
RSAwithSHA1 - RECOMMENDED - &dsig;rsa-sha1
Canonicalization
minimal - RECOMMENDED - &dsig;minimal
Canonical XML with Comments - RECOMMENDED -
<a href="http://www.w3.org/TR/2000/CR-xml-c14n-20001026#WithComments">http://www.w3.org/TR/2000/CR-xml-c14n-20001026#WithComments</a>
Canonical XML (omits comments) - REQUIRED -
<a href="http://www.w3.org/TR/2000/CR-xml-c14n-20001026">http://www.w3.org/TR/2000/CR-xml-c14n-20001026</a>
Transform
XSLT - OPTIONAL - <a href="http://www.w3.org/TR/1999/REC-xslt-19991116">http://www.w3.org/TR/1999/REC-xslt-19991116</a>
XPath - RECOMMENDED -
<a href="http://www.w3.org/TR/1999/REC-xpath-19991116">http://www.w3.org/TR/1999/REC-xpath-19991116</a>
Enveloped Signature* - REQUIRED - &dsig;enveloped-signature
* The Enveloped Signature transform removes the Signature element
from the calculation of the signature when the signature is within
the content that it is being signed. This MAY be implemented via the
RECOMMENDED XPath specification specified in 6.6.4: Enveloped
Signature Transform; it MUST have the same effect as that specified
by the XPath Transform.
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a> Message Digests</span>
Only one digest algorithm is defined herein. However, it is expected
that one or more additional strong digest algorithms will be
developed in connection with the US Advanced Encryption Standard
effort. Use of MD5 [MD5] is NOT RECOMMENDED because recent advances
in cryptography have cast doubt on its strength.
<span class="h4"><a class="selflink" id="section-6.2.1" href="#section-6.2.1">6.2.1</a> SHA-1</span>
Identifier:
<a href="http://www.w3.org/2000/09/xmldsig#sha1">http://www.w3.org/2000/09/xmldsig#sha1</a>
The SHA-1 algorithm [SHA-1] takes no explicit parameters. An example
of an SHA-1 DigestAlg element is:
<DigestMethod Algorithm="&dsig;sha1"/>
A SHA-1 digest is a 160-bit string. The content of the DigestValue
element shall be the base64 encoding of this bit string viewed as a
20-octet octet stream. For example, the DigestValue element for the
message digest:
A9993E36 4706816A BA3E2571 7850C26C 9CD0D89D
from <a href="#appendix-A">Appendix A</a> of the SHA-1 standard would be:
<DigestValue>qZk+NkcGgWq6PiVxeFDCbJzQ2J0=</DigestValue>
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a> Message Authentication Codes</span>
MAC algorithms take two implicit parameters, their keying material
determined from KeyInfo and the octet stream output by
CanonicalizationMethod. MACs and signature algorithms are
syntactically identical but a MAC implies a shared secret key.
<span class="h4"><a class="selflink" id="section-6.3.1" href="#section-6.3.1">6.3.1</a> HMAC</span>
Identifier:
<a href="http://www.w3.org/2000/09/xmldsig#hmac-sha1">http://www.w3.org/2000/09/xmldsig#hmac-sha1</a>
The HMAC algorithm (<a href="./rfc2104">RFC2104</a> [HMAC]) takes the truncation length in
bits as a parameter; if the parameter is not specified then all the
bits of the hash are output. An example of an HMAC SignatureMethod
element:
<SignatureMethod Algorithm="&dsig;hmac-sha1">
<HMACOutputLength>128</HMACOutputLength>
</SignatureMethod>
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
The output of the HMAC algorithm is ultimately the output (possibly
truncated) of the chosen digest algorithm. This value shall be
base64 encoded in the same straightforward fashion as the output of
the digest algorithms. Example: the SignatureValue element for the
HMAC-SHA1 digest
9294727A 3638BB1C 13F48EF8 158BFC9D
from the test vectors in [HMAC] would be
<SignatureValue>kpRyejY4uxwT9I74FYv8nQ==</SignatureValue>
Schema Definition:
<element name="HMACOutputLength" type="integer"/>
DTD:
<!ELEMENT HMACOutputLength (#PCDATA)>
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a> Signature Algorithms</span>
Signature algorithms take two implicit parameters, their keying
material determined from KeyInfo and the octet stream output by
CanonicalizationMethod. Signature and MAC algorithms are
syntactically identical but a signature implies public key
cryptography.
<span class="h4"><a class="selflink" id="section-6.4.1" href="#section-6.4.1">6.4.1</a> DSA</span>
Identifier:
<a href="http://www.w3.org/2000/09/xmldsig#dsa-sha1">http://www.w3.org/2000/09/xmldsig#dsa-sha1</a>
The DSA algorithm [DSS] takes no explicit parameters. An example of
a DSA SignatureMethod element is:
<SignatureMethod Algorithm="&dsig;dsa"/>
The output of the DSA algorithm consists of a pair of integers
usually referred by the pair (r, s). The signature value consists of
the base64 encoding of the concatenation of two octet-streams that
respectively result from the octet-encoding of the values r and s.
Integer to octet-stream conversion must be done according to the
I2OSP operation defined in the <a href="./rfc2437">RFC 2437</a> [PKCS1] specification with a
k parameter equal to 20. For example, the SignatureValue element for
a DSA signature (r, s) with values specified in hexadecimal:
r = 8BAC1AB6 6410435C B7181F95 B16AB97C 92B341C0
s = 41E2345F 1F56DF24 58F426D1 55B4BA2D B6DCD8C8
<span class="grey">Eastlake, 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="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
from the example in Appendix 5 of the DSS standard would be
<SignatureValue>
i6watmQQQ1y3GB+VsWq5fJKzQcBB4jRfH1bfJFj0JtFVtLotttzYyA==</SignatureValue>
DSA key values have the following set of fields: P, Q, G and Y are
mandatory when appearing as a key value, J, seed and pgenCounter are
optional but should be present. (The seed and pgenCounter fields
must appear together or be absent). All parameters are encoded as
base64 [MIME] values.
Schema:
<element name="DSAKeyValue">
<complexType>
<sequence>
<sequence>
<element name="P" type="ds:CryptoBinary"/>
<element name="Q" type="ds:CryptoBinary"/>
<element name="G" type="ds:CryptoBinary"/>
<element name="Y" type="ds:CryptoBinary"/>
<element name="J" type="ds:CryptoBinary" minOccurs="0"/>
</sequence>
<sequence minOccurs="0">
<element name="Seed" type="ds:CryptoBinary"/>
<element name="PgenCounter" type="ds:CryptoBinary"/>
</sequence>
</sequence>
</complexType>
</element>
DTD:
<!ELEMENT DSAKeyValue (P, Q, G, Y, J?, (Seed, PgenCounter)?) >
<!ELEMENT P (#PCDATA) >
<!ELEMENT Q (#PCDATA) >
<!ELEMENT G (#PCDATA) >
<!ELEMENT Y (#PCDATA) >
<!ELEMENT J (#PCDATA) >
<!ELEMENT Seed (#PCDATA) >
<!ELEMENT PgenCounter (#PCDATA) >
<span class="h4"><a class="selflink" id="section-6.4.2" href="#section-6.4.2">6.4.2</a> PKCS1</span>
Identifier:
<a href="http://www.w3.org/2000/09/xmldsig#rsa-sha1">http://www.w3.org/2000/09/xmldsig#rsa-sha1</a>
Arbitrary-length integers (e.g., "bignums" such as RSA modulii) are
represented in XML as octet strings. The integer value is first
converted to a "big endian" bitstring. The bitstring is then padded
<span class="grey">Eastlake, et al. Standards Track [Page 40]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-41" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
with leading zero bits so that the total number of bits == 0 mod 8
(so that there are an even number of bytes). If the bitstring
contains entire leading bytes that are zero, these are removed (so
the high-order byte is always non-zero). This octet string is then
base64 [MIME] encoded. (The conversion from integer to octet string
is equivalent to IEEE 1363's I2OSP [1363] with minimal length).
The expression "RSA algorithm" as used in this document refers to the
RSASSA-PKCS1-v1_5 algorithm described in <a href="./rfc2437">RFC 2437</a> [PKCS1]. The RSA
algorithm takes no explicit parameters. An example of an RSA
SignatureMethod element is: <SignatureMethod Algorithm="&dsig;rsa-
sha1"/>
The SignatureValue content for an RSA signature is the base64 [MIME]
encoding of the octet string computed as per <a href="./rfc2437">RFC 2437</a> [PKCS1, <a href="#section-8.1.1">section</a>
<a href="#section-8.1.1">8.1.1</a>: Signature generation for the RSASSA-PKCS1-v1_5 signature
scheme]. As specified in the EMSA-PKCS1-V1_5-ENCODE function <a href="./rfc2437">RFC</a>
<a href="./rfc2437">2437</a> [PKCS1, <a href="#section-9.2.1">section 9.2.1</a>], the value input to the signature
function MUST contain a pre-pended algorithm object identifier for
the hash function, but the availability of an ASN.1 parser and
recognition of OIDs is not required of a signature verifier. The
PKCS#1 v1.5 representation appears as:
CRYPT (PAD (ASN.1 (OID, DIGEST (data))))
Note that the padded ASN.1 will be of the following form:
01 | FF* | 00 | prefix | hash
where "|" is concatentation, "01", "FF", and "00" are fixed octets of
the corresponding hexadecimal value, "hash" is the SHA1 digest of the
data, and "prefix" is the ASN.1 BER SHA1 algorithm designator prefix
required in PKCS1 [<a href="./rfc2437">RFC 2437</a>], that is,
hex 30 21 30 09 06 05 2B 0E 03 02 1A 05 00 04 14
This prefix is included to make it easier to use standard
cryptographic libraries. The FF octet MUST be repeated the maximum
number of times such that the value of the quantity being CRYPTed is
one octet shorter than the RSA modulus.
The resulting base64 [MIME] string is the value of the child text
node of the SignatureValue element, e.g.
<SignatureValue>IWijxQjUrcXBYoCei4QxjWo9Kg8D3p9tlWoT4
t0/gyTE96639In0FZFY2/rvP+/bMJ01EArmKZsR5VW3rwoPxw=
</SignatureValue>
<span class="grey">Eastlake, et al. Standards Track [Page 41]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-42" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
RSA key values have two fields Modulus and Exponent
<RSAKeyValue>
<Modulus>xA7SEU+e0yQH5rm9kbCDN9o3aPIo7HbP7tX6WOocLZAtNfyxSZDU16ksL6W
jubafOqNEpcwR3RdFsT7bCqnXPBe5ELh5u4VEy19MzxkXRgrMvavzyBpVRgBUwUlV
5foK5hhmbktQhyNdy/6LpQRhDUDsTvK+g9Ucj47es9AQJ3U=
</Modulus>
<Exponent>AQAB</Exponent>
</RSAKeyValue>
Schema:
<element name="RSAKeyValue">
<complexType>
<sequence>
<element name="Modulus" type="ds:CryptoBinary"/>
<element name="Exponent" type="ds:CryptoBinary"/>
</sequence>
</complexType>
</element>
DTD:
<!ELEMENT RSAKeyValue (Modulus, Exponent) >
<!ELEMENT Modulus (#PCDATA) >
<!ELEMENT Exponent (#PCDATA) >
<span class="h3"><a class="selflink" id="section-6.5" href="#section-6.5">6.5</a> Canonicalization Algorithms</span>
If canonicalization is performed over octets, the canonicalization
algorithms take two implicit parameter: the content and its charset.
The charset is derived according to the rules of the transport
protocols and media types (e.g., <a href="./rfc2376">RFC2376</a> [XML-MT] defines the media
types for XML). This information is necessary to correctly sign and
verify documents and often requires careful server side
configuration.
Various canonicalization algorithms require conversion to [UTF-8].The
two algorithms below understand at least [UTF-8] and [UTF-16] as
input encodings. We RECOMMEND that externally specified algorithms
do the same. Knowledge of other encodings is OPTIONAL.
Various canonicalization algorithms transcode from a non-Unicode
encoding to Unicode. The two algorithms below perform text
normalization during transcoding [NFC]. We RECOMMEND that externally
<span class="grey">Eastlake, et al. Standards Track [Page 42]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-43" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
specified canonicalization algorithms do the same. (Note, there can
be ambiguities in converting existing charsets to Unicode, for an
example see the XML Japanese Profile [XML-Japanese] NOTE.)
<span class="h4"><a class="selflink" id="section-6.5.1" href="#section-6.5.1">6.5.1</a> Minimal Canonicalization</span>
Identifier:
<a href="http://www.w3.org/2000/09/xmldsig#minimal">http://www.w3.org/2000/09/xmldsig#minimal</a>
An example of a minimal canonicalization element is:
<CanonicalizationMethod Algorithm="&dsig;minimal"/>
The minimal canonicalization algorithm:
* converts the character encoding to UTF-8 (without any byte
order mark (BOM)). If an encoding is given in the XML
declaration, it must be removed. Implementations MUST
understand at least [UTF-8] and [UTF-16] as input encodings.
Non-Unicode to Unicode transcoding MUST perform text
normalization [NFC].
* normalizes line endings as provided by [XML]. (See XML and
Canonicalization and Syntactical Considerations (<a href="#section-7">section 7</a>).)
This algorithm requires as input the octet stream of the resource to
be processed; the algorithm outputs an octet stream. When used to
canonicalize SignedInfo the algorithm MUST be provided with the
octets that represent the well-formed SignedInfo element (and its
children and content) as described in The CanonicalizationMethod
Element (<a href="#section-4.3.1">section 4.3.1</a>).
If the signature application has a node set, then the signature
application must convert it into octets as described in The Reference
Processing Model (<a href="#section-4.3.3.2">section 4.3.3.2</a>). However, Minimal
Canonicalization is NOT RECOMMENDED for processing XPath node-sets,
the results of same-document URI references, and the output of other
types of XML based transforms. It is only RECOMMENDED for simple
character normalization of well formed XML that has no namespace or
external entity complications.
<span class="h4"><a class="selflink" id="section-6.5.2" href="#section-6.5.2">6.5.2</a> Canonical XML</span>
Identifier for REQUIRED Canonical XML (omits comments):
<a href="http://www.w3.org/TR/2000/CR-xml-c14n-20001026">http://www.w3.org/TR/2000/CR-xml-c14n-20001026</a>
Identifier for Canonical XML with Comments:
<a href="http://www.w3.org/TR/2000/CR-xml-c14n-20001026#WithComments">http://www.w3.org/TR/2000/CR-xml-c14n-20001026#WithComments</a>
An example of an XML canonicalization element is:
<span class="grey">Eastlake, et al. Standards Track [Page 43]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-44" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<CanonicalizationMethod Algorithm="http://www.w3.org/TR/2000/CR-xml-
c14n-20001026"/>
The normative specification of Canonical XML is [XML-C14N]. The
algorithm is capable of taking as input either an octet stream or an
XPath node-set (or sufficiently functional alternative). The
algorithm produces an octet stream as output. Canonical XML is
easily parameterized (via an additional URI) to omit or retain
comments.
<span class="h3"><a class="selflink" id="section-6.6" href="#section-6.6">6.6</a> Transform Algorithms</span>
A Transform algorithm has a single implicit parameters: an octet
stream from the Reference or the output of an earlier Transform.
Application developers are strongly encouraged to support all
transforms listed in this section as RECOMMENDED unless the
application environment has resource constraints that would make such
support impractical. Compliance with this recommendation will
maximize application interoperability and libraries should be
available to enable support of these transforms in applications
without extensive development.
<span class="h4"><a class="selflink" id="section-6.6.1" href="#section-6.6.1">6.6.1</a> Canonicalization</span>
Any canonicalization algorithm that can be used for
CanonicalizationMethod (such as those in Canonicalization Algorithms
(<a href="#section-6.5">section 6.5</a>)) can be used as a Transform.
<span class="h4"><a class="selflink" id="section-6.6.2" href="#section-6.6.2">6.6.2</a> Base64</span>
Identifiers:
<a href="http://www.w3.org/2000/09/xmldsig#base64">http://www.w3.org/2000/09/xmldsig#base64</a>
The normative specification for base 64 decoding transforms is
[MIME]. The base64 Transform element has no content. The input is
decoded by the algorithms. This transform is useful if an
application needs to sign the raw data associated with the encoded
content of an element.
This transform requires an octet stream for input. If an XPath
node-set (or sufficiently functional alternative) is given as input,
then it is converted to an octet stream by performing operations
logically equivalent to 1) applying an XPath transform with
expression self::text(), then 2) taking the string-value of the
node-set. Thus, if an XML element is identified by a barename
XPointer in the Reference URI, and its content consists solely of
base64 encoded character data, then this transform automatically
<span class="grey">Eastlake, et al. Standards Track [Page 44]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-45" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
strips away the start and end tags of the identified element and any
of its descendant elements as well as any descendant comments and
processing instructions. The output of this transform is an octet
stream.
<span class="h4"><a class="selflink" id="section-6.6.3" href="#section-6.6.3">6.6.3</a> XPath Filtering</span>
Identifier:
<a href="http://www.w3.org/TR/1999/REC-xpath-19991116">http://www.w3.org/TR/1999/REC-xpath-19991116</a>
The normative specification for XPath expression evaluation is
[XPath]. The XPath expression to be evaluated appears as the
character content of a transform parameter child element named XPath.
The input required by this transform is an XPath node-set. Note that
if the actual input is an XPath node-set resulting from a null URI or
barename XPointer dereference, then comment nodes will have been
omitted. If the actual input is an octet stream, then the
application MUST convert the octet stream to an XPath node-set
suitable for use by Canonical XML with Comments (a subsequent
application of the REQUIRED Canonical XML algorithm would strip away
these comments). In other words, the input node-set should be
equivalent to the one that would be created by the following process:
1. Initialize an XPath evaluation context by setting the initial node
equal to the input XML document's root node, and set the context
position and size to 1.
2. Evaluate the XPath expression (//. | //@* | //namespace::*)
The evaluation of this expression includes all of the document's
nodes (including comments) in the node-set representing the octet
stream.
The transform output is also an XPath node-set. The XPath expression
appearing in the XPath parameter is evaluated once for each node in
the input node-set. The result is converted to a boolean. If the
boolean is true, then the node is included in the output node-set.
If the boolean is false, then the node is omitted from the output
node-set.
Note: Even if the input node-set has had comments removed, the
comment nodes still exist in the underlying parse tree and can
separate text nodes. For example, the markup <e>Hello, <!-- comment
--> world!</e> contains two text nodes. Therefore, the expression
self::text()[string()="Hello, world!"] would fail. Should this
problem arise in the application, it can be solved by either
canonicalizing the document before the XPath transform to physically
<span class="grey">Eastlake, et al. Standards Track [Page 45]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-46" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
remove the comments or by matching the node based on the parent
element's string value (e.g., by using the expression
self::text()[string(parent::e)="Hello, world!"]).
The primary purpose of this transform is to ensure that only
specifically defined changes to the input XML document are permitted
after the signature is affixed. This is done by omitting precisely
those nodes that are allowed to change once the signature is affixed,
and including all other input nodes in the output. It is the
responsibility of the XPath expression author to include all nodes
whose change could affect the interpretation of the transform output
in the application context.
An important scenario would be a document requiring two enveloped
signatures. Each signature must omit itself from its own digest
calculations, but it is also necessary to exclude the second
signature element from the digest calculations of the first signature
so that adding the second signature does not break the first
signature.
The XPath transform establishes the following evaluation context for
each node of the input node-set:
* A context node equal to a node of the input node-set.
* A context position, initialized to 1.
* A context size, initialized to 1.
* A library of functions equal to the function set defined in
XPath plus a function named here.
* A set of variable bindings. No means for initializing these is
defined. Thus, the set of variable bindings used when
evaluating the XPath expression is empty, and use of a variable
reference in the XPath expression results in an error.
* The set of namespace declarations in scope for the XPath
expression.
As a result of the context node setting, the XPath expressions
appearing in this transform will be quite similar to those used in
used in [XSLT], except that the size and position are always 1 to
reflect the fact that the transform is automatically visiting every
node (in XSLT, one recursively calls the command apply-templates to
visit the nodes of the input tree).
The function here() is defined as follows:
Function: node-set here()
The here function returns a node-set containing the attribute or
processing instruction node or the parent element of the text node
<span class="grey">Eastlake, et al. Standards Track [Page 46]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-47" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
that directly bears the XPath expression. This expression results in
an error if the containing XPath expression does not appear in the
same XML document against which the XPath expression is being
evaluated.
Note: The function definition for here() is intended to be consistent
with its definition in XPointer. However, some minor differences are
presently being discussed between the Working Groups.
As an example, consider creating an enveloped signature (a Signature
element that is a descendant of an element being signed). Although
the signed content should not be changed after signing, the elements
within the Signature element are changing (e.g., the digest value
must be put inside the DigestValue and the SignatureValue must be
subsequently calculated). One way to prevent these changes from
invalidating the digest value in DigestValue is to add an XPath
Transform that omits all Signature elements and their descendants.
For example,
<Document>
<Signature xmlns="&dsig;">
<SignedInfo>
...
<Reference URI="">
<Transforms>
<Transform
Algorithm="http://www.w3.org/TR/1999/REC-xpath-19991116">
<XPath xmlns:dsig="&dsig;">
not(ancestor-or-self::dsig:Signature)
</XPath>
</Transform>
</Transforms>
<DigestMethod
Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
<DigestValue></DigestValue>
</Reference>
</SignedInfo>
<SignatureValue></SignatureValue>
</Signature>
...
</Document>
Due to the null Reference URI in this example, the XPath transform
input node-set contains all nodes in the entire parse tree starting
at the root node (except the comment nodes). For each node in this
node-set, the node is included in the output node-set except if the
node or one of its ancestors has a tag of Signature that is in the
namespace given by the replacement text for the entity &dsig;.
<span class="grey">Eastlake, et al. Standards Track [Page 47]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-48" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
A more elegant solution uses the here function to omit only the
Signature containing the XPath Transform, thus allowing enveloped
signatures to sign other signatures. In the example above, use the
XPath element:
<XPath xmlns:dsig="&dsig;">
count(ancestor-or-self::dsig:Signature |
here()/ancestor::dsig:Signature[1]) >
count(ancestor-or-self::dsig:Signature)</XPath>
Since the XPath equality operator converts node sets to string values
before comparison, we must instead use the XPath union operator (|).
For each node of the document, the predicate expression is true if
and only if the node-set containing the node and its Signature
element ancestors does not include the enveloped Signature element
containing the XPath expression (the union does not produce a larger
set if the enveloped Signature element is in the node-set given by
ancestor-or-self::Signature).
<span class="h4"><a class="selflink" id="section-6.6.4" href="#section-6.6.4">6.6.4</a> Enveloped Signature Transform</span>
Identifier:
<a href="http://www.w3.org/2000/09/xmldsig#enveloped-signature">http://www.w3.org/2000/09/xmldsig#enveloped-signature</a>
An enveloped signature transform T removes the whole Signature
element containing T from the digest calculation of the Reference
element containing T. The entire string of characters used by an XML
processor to match the Signature with the XML production element is
removed. The output of the transform is equivalent to the output
that would result from replacing T with an XPath transform containing
the following XPath parameter element:
<XPath xmlns:dsig="&dsig;">
count(ancestor-or-self::dsig:Signature |
here()/ancestor::dsig:Signature[1]) >
count(ancestor-or-self::dsig:Signature)</XPath>
The input and output requirements of this transform are identical to
those of the XPath transform. Note that it is not necessary to use
an XPath expression evaluator to create this transform. However,
this transform MUST produce output in exactly the same manner as the
XPath transform parameterized by the XPath expression above.
<span class="h4"><a class="selflink" id="section-6.6.5" href="#section-6.6.5">6.6.5</a> XSLT Transform</span>
Identifier:
<a href="http://www.w3.org/TR/1999/REC-xslt-19991116">http://www.w3.org/TR/1999/REC-xslt-19991116</a>
<span class="grey">Eastlake, et al. Standards Track [Page 48]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-49" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
The normative specification for XSL Transformations is [XSLT]. The
XSL style sheet or transform to be evaluated appears as the character
content of a transform parameter child element named XSLT. The root
element of a XSLT style sheet SHOULD be <xsl:stylesheet>.
This transform requires an octet stream as input. If the actual
input is an XPath node-set, then the signature application should
attempt to covert it to octets (apply Canonical XML]) as described in
the Reference Processing Model (<a href="#section-4.3.3.2">section 4.3.3.2</a>).
The output of this transform is an octet stream. The processing
rules for the XSL style sheet or transform element are stated in the
XSLT specification [XSLT]. We RECOMMEND that XSLT transformauthors
use an output method of xml for XML and HTML. As XSLT
implementations do not produce consistent serializations of their
output, we further RECOMMEND inserting a transformafter the XSLT
transformto perform canonicalize the output. These steps will help
to ensure interoperability of the resulting signatures among
applications that support the XSLT transform. Note that if the
output is actually HTML, then the result of these steps is logically
equivalent [XHTML].
<span class="h3"><a class="selflink" id="section-7.0" href="#section-7.0">7.0</a> XML Canonicalization and Syntax Constraint Considerations</span>
Digital signatures only work if the verification calculations are
performed on exactly the same bits as the signing calculations. If
the surface representation of the signed data can change between
signing and verification, then some way to standardize the changeable
aspect must be used before signing and verification. For example,
even for simple ASCII text there are at least three widely used line
ending sequences. If it is possible for signed text to be modified
from one line ending convention to another between the time of
signing and signature verification, then the line endings need to be
canonicalized to a standard form before signing and verification or
the signatures will break.
XML is subject to surface representation changes and to processing
which discards some surface information. For this reason, XML
digital signatures have a provision for indicating canonicalization
methods in the signature so that a verifier can use the same
canonicalization as the signer.
Throughout this specification we distinguish between the
canonicalization of a Signature element and other signed XML data
objects. It is possible for an isolated XML document to be treated
as if it were binary data so that no changes can occur. In that
case, the digest of the document will not change and it need not be
canonicalized if it is signed and verified as such. However, XML
<span class="grey">Eastlake, et al. Standards Track [Page 49]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-50" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
that is read and processed using standard XML parsing and processing
techniques is frequently changed such that some of its surface
representation information is lost or modified. In particular, this
will occur in many cases for the Signature and enclosed SignedInfo
elements since they, and possibly an encompassing XML document, will
be processed as XML.
Similarly, these considerations apply to Manifest, Object, and
SignatureProperties elements if those elements have been digested,
their DigestValue is to be checked, and they are being processed as
XML.
The kinds of changes in XML that may need to be canonicalized can be
divided into three categories. There are those related to the basic
[XML], as described in 7.1 below. There are those related to [DOM],
[SAX], or similar processing as described in 7.2 below. And, third,
there is the possibility of coded character set conversion, such as
between UTF-8 and UTF-16, both of which all [XML] compliant
processors are required to support.
Any canonicalization algorithm should yield output in a specific
fixed coded character set. For both the minimal canonicalization
defined in this specification and Canonical XML [XML-C14N] that coded
character set is UTF-8 (without a byte order mark (BOM)).Neither the
minimal canonicalization nor the Canonical XML [XML-C14N] algorithms
provide character normalization. We RECOMMEND that signature
applications create XML content (Signature elements and their
descendents/content) in Normalization Form C [NFC] and check that any
XML being consumed is in that form as well (if not, signatures may
consequently fail to validate). Additionally, none of these
algorithms provide data type normalization. Applications that
normalize data types in varying formats (e.g., (true, false) or
(1,0)) may not be able to validate each other's signatures.
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a> XML 1.0, Syntax Constraints, and Canonicalization</span>
XML 1.0 [XML] defines an interface where a conformant application
reading XML is given certain information from that XML and not other
information. In particular,
1. line endings are normalized to the single character #xA by
dropping #xD characters if they are immediately followed by a #xA
and replacing them with #xA in all other cases,
2. missing attributes declared to have default values are provided to
the application as if present with the default value,
3. character references are replaced with the corresponding
character,
<span class="grey">Eastlake, et al. Standards Track [Page 50]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-51" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
4. entity references are replaced with the corresponding declared
entity,
5. attribute values are normalized by
A. replacing character and entity references as above,
B. replacing occurrences of #x9, #xA, and #xD with #x20 (space)
except that the sequence #xD#xA is replaced by a single space,
and
C. if the attribute is not declared to be CDATA, stripping all
leading and trailing spaces and replacing all interior runs of
spaces with a single space.
Note that items (2), (4), and (5C) depend on the presence of a
schema, DTD or similar declarations. The Signature element type is
laxly schema valid [XML-schema], consequently external XML or even
XML within the same document as the signature may be (only) well
formed or from another namespace (where permitted by the signature
schema); the noted items may not be present. Thus, a signature with
such content will only be verifiable by other signature applications
if the following syntax constraints are observed when generating any
signed material including the SignedInfo element:
1. attributes having default values be explicitly present,
2. all entity references (except "amp", "lt", "gt", "apos", "quot",
and other character entities not representable in the encoding
chosen) be expanded,
3. attribute value white space be normalized
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a> DOM/SAX Processing and Canonicalization</span>
In addition to the canonicalization and syntax constraints discussed
above, many XML applications use the Document Object Model [DOM] or
The Simple API for XML [SAX]. DOM maps XML into a tree structure of
nodes and typically assumes it will be used on an entire document
with subsequent processing being done on this tree. SAX converts XML
into a series of events such as a start tag, content, etc. In either
case, many surface characteristics such as the ordering of attributes
and insignificant white space within start/end tags is lost. In
addition, namespace declarations are mapped over the nodes to which
they apply, losing the namespace prefixes in the source text and, in
most cases, losing where namespace declarations appeared in the
original instance.
If an XML Signature is to be produced or verified on a system using
the DOM or SAX processing, a canonical method is needed to serialize
the relevant part of a DOM tree or sequence of SAX events. XML
canonicalization specifications, such as [XML-C14N], are based only
on information which is preserved by DOM and SAX. For an XML
<span class="grey">Eastlake, et al. Standards Track [Page 51]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-52" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
Signature to be verifiable by an implementation using DOM or SAX, not
only must the XML1.0 syntax constraints given in the previous section
be followed but an appropriate XML canonicalization MUST be specified
so that the verifier can re-serialize DOM/SAX mediated input into the
same octect stream that was signed.
<span class="h3"><a class="selflink" id="section-8.0" href="#section-8.0">8.0</a> Security Considerations</span>
The XML Signature specification provides a very flexible digital
signature mechanism. Implementors must give consideration to their
application threat models and to the following factors.
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a> Transforms</span>
A requirement of this specification is to permit signatures to "apply
to a part or totality of a XML document." (See [XML-Signature-RD,
<a href="#section-3.1.3">section 3.1.3</a>].) The Transforms mechanism meets this requirement by
permitting one to sign data derived from processing the content of
the identified resource. For instance, applications that wish to
sign a form, but permit users to enter limited field data without
invalidating a previous signature on the form might use [XPath] to
exclude those portions the user needs to change. Transforms may be
arbitrarily specified and may include encoding transforms,
canonicalization instructions or even XSLT transformations. Three
cautions are raised with respect to this feature in the following
sections.
Note, core validation behavior does not confirm that the signed data
was obtained by applying each step of the indicated transforms.
(Though it does check that the digest of the resulting content
matches that specified in the signature.) For example, some
application may be satisfied with verifying an XML signature over a
cached copy of already transformed data. Other applications might
require that content be freshly dereferenced and transformed.
<span class="h4"><a class="selflink" id="section-8.1.1" href="#section-8.1.1">8.1.1</a> Only What is Signed is Secure</span>
First, obviously, signatures over a transformed document do not
secure any information discarded by transforms: only what is signed
is secure.
Note that the use of Canonical XML [XML-C14N] ensures that all
internal entities and XML namespaces are expanded within the content
being signed. All entities are replaced with their definitions and
the canonical form explicitly represents the namespace that an
element would otherwise inherit. Applications that do not
canonicalize XML content (especially the SignedInfo element) SHOULD
<span class="grey">Eastlake, et al. Standards Track [Page 52]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-53" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
NOT use internal entities and SHOULD represent the namespace
explicitly within the content being signed since they can not rely
upon canonicalization to do this for them.
<span class="h4"><a class="selflink" id="section-8.1.2" href="#section-8.1.2">8.1.2</a> Only What is "Seen" Should be Signed</span>
Additionally, the signature secures any information introduced by the
transform: only what is "seen" (that which is represented to the user
via visual, auditory or other media) should be signed. If signing is
intended to convey the judgment or consent of a user (an automated
mechanism or person), then it is normally necessary to secure as
exactly as practical the information that was presented to that user.
Note that this can be accomplished by literally signing what was
presented, such as the screen images shown a user. However, this may
result in data which is difficult for subsequent software to
manipulate. Instead, one can sign the data along with whatever
filters, style sheets, client profile or other information that
affects its presentation.
<span class="h4"><a class="selflink" id="section-8.1.3" href="#section-8.1.3">8.1.3</a> "See" What is Signed</span>
Just as a user should only sign what it "sees," persons and automated
mechanisms that trust the validity of a transformed document on the
basis of a valid signature should operate over the data that was
transformed (including canonicalization) and signed, not the original
pre-transformed data. This recommendation applies to transforms
specified within the signature as well as those included as part of
the document itself. For instance, if an XML document includes an
embedded style sheet [XSLT] it is the transformed document that that
should be represented to the user and signed. To meet this
recommendation where a document references an external style sheet,
the content of that external resource should also be signed as via a
signature Reference -- otherwise the content of that external content
might change which alters the resulting document without invalidating
the signature.
Some applications might operate over the original or intermediary
data but should be extremely careful about potential weaknesses
introduced between the original and transformed data. This is a
trust decision about the character and meaning of the transforms that
an application needs to make with caution. Consider a
canonicalization algorithm that normalizes character case (lower to
upper) or character composition ('e and accent' to 'accented-e'). An
adversary could introduce changes that are normalized and
consequently inconsequential to signature validity but material to a
DOM processor. For instance, by changing the case of a character one
might influence the result of an XPath selection. A serious risk is
introduced if that change is normalized for signature validation but
<span class="grey">Eastlake, et al. Standards Track [Page 53]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-54" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
the processor operates over the original data and returns a different
result than intended. Consequently, while we RECOMMEND all documents
operated upon and generated by signature applications be in [NFC]
(otherwise intermediate processors might unintentionally break the
signature) encoding normalizations SHOULD NOT be done as part of a
signature transform, or (to state it another way) if normalization
does occur, the application SHOULD always "see" (operate over) the
normalized form.
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a> Check the Security Model</span>
This specification uses public key signatures and keyed hash
authentication codes. These have substantially different security
models. Furthermore, it permits user specified algorithms which may
have other models.
With public key signatures, any number of parties can hold the public
key and verify signatures while only the parties with the private key
can create signatures. The number of holders of the private key
should be minimized and preferably be one. Confidence by verifiers
in the public key they are using and its binding to the entity or
capabilities represented by the corresponding private key is an
important issue, usually addressed by certificate or online authority
systems.
Keyed hash authentication codes, based on secret keys, are typically
much more efficient in terms of the computational effort required but
have the characteristic that all verifiers need to have possession of
the same key as the signer. Thus any verifier can forge signatures.
This specification permits user provided signature algorithms and
keying information designators. Such user provided algorithms may
have different security models. For example, methods involving
biometrics usually depend on a physical characteristic of the
authorized user that can not be changed the way public or secret keys
can be and may have other security model differences.
<span class="h3"><a class="selflink" id="section-8.3" href="#section-8.3">8.3</a> Algorithms, Key Lengths, Certificates, Etc.</span>
The strength of a particular signature depends on all links in the
security chain. This includes the signature and digest algorithms
used, the strength of the key generation [RANDOM] and the size of the
key, the security of key and certificate authentication and
distribution mechanisms, certificate chain validation policy,
protection of cryptographic processing from hostile observation and
tampering, etc.
<span class="grey">Eastlake, et al. Standards Track [Page 54]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-55" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
Care must be exercised by applications in executing the various
algorithms that may be specified in an XML signature and in the
processing of any "executable content" that might be provided to such
algorithms as parameters, such as XSLT transforms. The algorithms
specified in this document will usually be implemented via a trusted
library but even there perverse parameters might cause unacceptable
processing or memory demand. Even more care may be warranted with
application defined algorithms.
The security of an overall system will also depend on the security
and integrity of its operating procedures, its personnel, and on the
administrative enforcement of those procedures. All the factors
listed in this section are important to the overall security of a
system; however, most are beyond the scope of this specification.
<span class="h3"><a class="selflink" id="section-9.0" href="#section-9.0">9.0</a> Schema, DTD, Data Model, and Valid Examples</span>
XML Signature Schema Instance
<a href="http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/xmldsig-core-schema.xsd">http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/xmldsig-</a>
<a href="http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/xmldsig-core-schema.xsd">core-schema.xsd</a> Valid XML schema instance based on the
20000922 Schema/DTD [XML-Schema].
XML Signature DTD
<a href="http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/xmldsig-core-schema.dtd">http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/xmldsig-</a>
<a href="http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/xmldsig-core-schema.dtd">core-schema.dtd</a>
RDF Data Model
<a href="http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/xmldsig-datamodel-20000112.gif">http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/xmldsig-</a>
<a href="http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/xmldsig-datamodel-20000112.gif">datamodel-20000112.gif</a>
XML Signature Object Example
<a href="http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/signature-example.xml">http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/signature-</a>
<a href="http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/signature-example.xml">example.xml</a> A cryptographical invalid XML example that
includes foreign content and validates under the schema. (It
validates under the DTD when the foreign content is removed or
the DTD is modified accordingly).
RSA XML Signature Example
<a href="http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/signature-example-rsa.xml">http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/signature-</a>
<a href="http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/signature-example-rsa.xml">example-rsa.xml</a>
An XML Signature example with generated cryptographic values by
Merlin Hughes and validated by Gregor Karlinger.
DSA XML Signature Example
<a href="http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/signature-example-dsa.xml">http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/signature-</a>
<a href="http://www.w3.org/TR/2000/CR-xmldsig-core-20001031/signature-example-dsa.xml">example-dsa.xml</a> Similar to above but uses DSA.
<span class="grey">Eastlake, et al. Standards Track [Page 55]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-56" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<span class="h3"><a class="selflink" id="section-10.0" href="#section-10.0">10.0</a> Definitions</span>
Authentication Code
A value generated from the application of a shared key to a
message via a cryptographic algorithm such that it has the
properties of message authentication (integrity) but not signer
authentication
Authentication, Message
"A signature should identify what is signed, making it
impracticable to falsify or alter either the signed matter or
the signature without detection." [Digital Signature
Guidelines, ABA]
Authentication, Signer
"A signature should indicate who signed a document, message or
record, and should be difficult for another person to produce
without authorization." [Digital Signature Guidelines, ABA]
Core
The syntax and processing defined by this specification,
including core validation. We use this term to distinguish
other markup, processing, and applications semantics from our
own.
Data Object (Content/Document)
The actual binary/octet data being operated on (transformed,
digested, or signed) by an application -- frequently an HTTP
entity [HTTP]. Note that the proper noun Object designates a
specific XML element. Occasionally we refer to a data object
as a document or as a resource's content. The term element
content is used to describe the data between XML start and end
tags [XML]. The term XML document is used to describe data
objects which conform to the XML specification [XML].
Integrity
The inability to change a message without also changing the
signature value. See message authentication.
Object
An XML Signature element wherein arbitrary (non-core) data may
be placed. An Object element is merely one type of digital
data (or document) that can be signed via a Reference.
Resource
"A resource can be anything that has identity. Familiar
examples include an electronic document, an image, a service
(e.g., 'today's weather report for Los Angeles'), and a
<span class="grey">Eastlake, et al. Standards Track [Page 56]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-57" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
collection of other resources.... The resource is the
conceptual mapping to an entity or set of entities, not
necessarily the entity which corresponds to that mapping at any
particular instance in time. Thus, a resource can remain
constant even when its content---the entities to which it
currently corresponds---changes over time, provided that the
conceptual mapping is not changed in the process." [URI] In
order to avoid a collision of the term entity within the URI
and XML specifications, we use the term data object, content or
document to refer to the actual bits being operated upon.
Signature
Formally speaking, a value generated from the application of a
private key to a message via a cryptographic algorithm such
that it has the properties of signer authentication and message
authentication (integrity). (However, we sometimes use the
term signature generically such that it encompasses
Authentication Code values as well, but we are careful to make
the distinction when the property of signer authentication is
relevant to the exposition.) A signature may be (non-
exclusively) described as detached, enveloping, or enveloped.
Signature, Application
An application that implements the MANDATORY (REQUIRED/MUST)
portions of this specification; these conformance requirements
are over the structure of the Signature element type and its
children (including SignatureValue) and mandatory to support
algorithms.
Signature, Detached
The signature is over content external to the Signature
element, and can be identified via a URI or transform.
Consequently, the signature is "detached" from the content it
signs. This definition typically applies to separate data
objects, but it also includes the instance where the Signature
and data object reside within the same XML document but are
sibling elements.
Signature, Enveloping
The signature is over content found within an Object element of
the signature itself. The Object(or its content) is identified
via a Reference (via a URI fragment identifier or transform).
Signature, Enveloped
The signature is over the XML content that contains the
signature as an element. The content provides the root XML
<span class="grey">Eastlake, et al. Standards Track [Page 57]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-58" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
document element. Obviously, enveloped signatures must take
care not to include their own value in the calculation of the
SignatureValue.
Transform
The processing of a octet stream from source content to derived
content. Typical transforms include XML Canonicalization,
XPath, and XSLT.
Validation, Core
The core processing requirements of this specification
requiring signature validation and SignedInfo reference
validation.
Validation, Reference
The hash value of the identified and transformed content,
specified by Reference, matches its specified DigestValue.
Validation, Signature
The SignatureValue matches the result of processing SignedInfo
with CanonicalizationMethod and SignatureMethod as specified
in Core Validation (<a href="#section-3.2">section 3.2</a>).
Validation, Trust/Application
The application determines that the semantics associated with a
signature are valid. For example, an application may validate
the time stamps or the integrity of the signer key -- though
this behavior is external to this core specification.
<span class="h3"><a class="selflink" id="section-11.0" href="#section-11.0">11.0</a> References</span>
ABA Digital Signature Guidelines.
<a href="http://www.abanet.org/scitech/ec/isc/dsgfree.html">http://www.abanet.org/scitech/ec/isc/dsgfree.html</a>
Bourret Declaring Elements and Attributes in an XML DTD.
Ron Bourret. <a href="http://www.informatik.tu-darmstadt.de/DVS1/staff/bourret/xml/xmldtd.html">http://www.informatik.tu-</a>
<a href="http://www.informatik.tu-darmstadt.de/DVS1/staff/bourret/xml/xmldtd.html">darmstadt.de/DVS1/staff/bourret/xml/xmldtd.html</a>
DOM Document Object Model (DOM) Level 1 Specification.
W3C Recommendation. V. Apparao, S. Byrne, M.
Champion, S. Isaacs, I. Jacobs, A. Le Hors, G.
Nicol, J. Robie, R. Sutor, C. Wilson, L. Wood.
October 1998. <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/">http://www.w3.org/TR/1998/REC-DOM-</a>
<a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/">Level-1-19981001/</a>
<span class="grey">Eastlake, et al. Standards Track [Page 58]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-59" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
DSS FIPS PUB 186-1. Digital Signature Standard (DSS).
U.S. Department of Commerce/National Institute of
Standards and Technology.
<a href="http://csrc.nist.gov/fips/fips1861.pdf">http://csrc.nist.gov/fips/fips1861.pdf</a>
HMAC Krawczyk, H., Bellare, M. and R. Canetti, "HMAC:
Keyed-Hashing for Message Authentication", <a href="./rfc2104">RFC</a>
<a href="./rfc2104">2104</a>, February 1997.
<a href="http://www.ietf.org/rfc/rfc2104.txt">http://www.ietf.org/rfc/rfc2104.txt</a>
HTTP Fielding, R., Gettys, J., Mogul, J., Frystyk, H.,
Masinter, L., Leach, P. and T. Berners-Lee,
"Hypertext Transfer Protocol -- HTTP/1.1", <a href="./rfc2616">RFC</a>
<a href="./rfc2616">2616</a>, June 1999.
<a href="http://www.ietf.org/rfc/rfc2616.txt">http://www.ietf.org/rfc/rfc2616.txt</a>
KEYWORDS 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 href="http://www.ietf.org/rfc/rfc2119.txt">http://www.ietf.org/rfc/rfc2119.txt</a>
LDAP-DN Wahl, M., Kille, S. and T. Howes, "Lightweight
Directory Access Protocol (v3): UTF-8 String
Representation of Distinguished Names", <a href="./rfc2253">RFC 2253</a>,
December 1997. <a href="http://www.ietf.org/rfc/rfc2253.txt">http://www.ietf.org/rfc/rfc2253.txt</a>
MD5 Rivest, R., "The MD5 Message-Digest Algorithm", <a href="./rfc1321">RFC</a>
<a href="./rfc1321">1321</a>, April 1992.
<a href="http://www.ietf.org/rfc/rfc1321.txt">http://www.ietf.org/rfc/rfc1321.txt</a>
MIME Freed, N. and N. Borenstein, "Multipurpose Internet
Mail Extensions (MIME) Part One: Format of Internet
Message Bodies", <a href="./rfc2045">RFC 2045</a>, November 1996.
<a href="http://www.ietf.org/rfc/rfc2045.txt">http://www.ietf.org/rfc/rfc2045.txt</a>
NFC TR15. Unicode Normalization Forms. M. Davis, M.
Drst. Revision 18: November 1999.
PGP Callas, J., Donnerhacke, L., Finney, H. and R.
Thayer, "OpenPGP Message Format", November 1998.
<a href="http://www.ietf.org/rfc/rfc2440.txt">http://www.ietf.org/rfc/rfc2440.txt</a>
RANDOM Eastlake, D., Crocker, S. and J. Schiller,
"Randomness Recommendations for Security", <a href="./rfc1750">RFC</a>
<a href="./rfc1750">1750</a>, December 1994.
<a href="http://www.ietf.org/rfc/rfc1750.txt">http://www.ietf.org/rfc/rfc1750.txt</a>
<span class="grey">Eastlake, et al. Standards Track [Page 59]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-60" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
RDF RDF Schema W3C Candidate Recommendation. D.
Brickley, R.V. Guha. March 2000.
<a href="http://www.w3.org/TR/2000/CR-rdf-schema-20000327/RDF">http://www.w3.org/TR/2000/CR-rdf-schema-20000327/</a>
<a href="http://www.w3.org/TR/2000/CR-rdf-schema-20000327/RDF">RDF</a> Model and Syntax W3C Recommendation. O.
Lassila, R. Swick. February 1999.
<a href="http://www.w3.org/TR/1999/REC-rdf-syntax-19990222/">http://www.w3.org/TR/1999/REC-rdf-syntax-19990222/</a>
1363 IEEE 1363: Standard Specifications for Public Key
Cryptography. August 2000.
PKCS1 Kaliski, B. and J. Staddon, "PKCS #1: RSA
Cryptography Specifications Version 2.0", <a href="./rfc2437">RFC 2437</a>,
October 1998. <a href="http://www.ietf.org/rfc/rfc2437.txt">http://www.ietf.org/rfc/rfc2437.txt</a>
SAX SAX: The Simple API for XML David Megginson et. al.
May 1998. <a href="http://www.megginson.com/SAX/index.html">http://www.megginson.com/SAX/index.html</a>
SHA-1 FIPS PUB 180-1. Secure Hash Standard. U.S.
Department of Commerce/National Institute of
Standards and Technology.
<a href="http://csrc.nist.gov/fips/fip180-1.pdf">http://csrc.nist.gov/fips/fip180-1.pdf</a>
Unicode The Unicode Consortium. The Unicode Standard.
<a href="http://www.unicode.org/unicode/standard/standard.html">http://www.unicode.org/unicode/standard/standard.html</a>
UTF-16 Hoffman, P. and F. Yergeau, "UTF-16, an encoding of
ISO 10646", <a href="./rfc2781">RFC 2781</a>, February 2000.
<a href="http://www.ietf.org/rfc/rfc2781.txt">http://www.ietf.org/rfc/rfc2781.txt</a>
UTF-8 Yergeau, F., "UTF-8, a transformation format of ISO
10646", <a href="./rfc2279">RFC 2279</a>, January 1998.
<a href="http://www.ietf.org/rfc/rfc2279.txt">http://www.ietf.org/rfc/rfc2279.txt</a>
URI Berners-Lee, T., Fielding, R. and L. Masinter,
"Uniform Resource Identifiers (URI): Generic
Syntax", <a href="./rfc2396">RFC 2396</a>, August 1998.
<a href="http://www.ietf.org/rfc/rfc2396.txt">http://www.ietf.org/rfc/rfc2396.txt</a>
URI-Literal Hinden, R., Carpenter, B. and L. Masinter, "Format
for Literal IPv6 Addresses in URL's", <a href="./rfc2732">RFC 2732</a>,
December 1999. <a href="http://www.ietf.org/rfc/rfc2732.txt">http://www.ietf.org/rfc/rfc2732.txt</a>
URL Berners-Lee, T., Masinter, L. and M. McCahill,
"Uniform Resource Locators (URL)", <a href="./rfc1738">RFC 1738</a>,
December 1994. <a href="http://www.ietf.org/rfc/rfc1738.txt">http://www.ietf.org/rfc/rfc1738.txt</a>
<span class="grey">Eastlake, et al. Standards Track [Page 60]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-61" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
URN Moats, R., "URN Syntax" <a href="./rfc2141">RFC 2141</a>, May 1997.
<a href="http://www.ietf.org/rfc/rfc2141.txt">http://www.ietf.org/rfc/rfc2141.txt</a>
Daigle, L., van Gulik, D., Iannella, R. and P.
Faltstrom, "URN Namespace Definition Mechanisms",
<a href="./rfc2611">RFC 2611</a>, June 1999.
<a href="http://www.ietf.org/rfc/rfc2611.txt">http://www.ietf.org/rfc/rfc2611.txt</a>
X509v3 ITU-T Recommendation X.509 version 3 (1997).
"Information Technology - Open Systems
Interconnection - The Directory Authentication
Framework" ISO/IEC 9594-8:1997.
XHTML 1.0 XHTML(tm) 1.0: The Extensible Hypertext Markup
Language Recommendation. S. Pemberton, D. Raggett,
et. al. January 2000.
<a href="http://www.w3.org/TR/2000/REC-xhtml1-20000126/">http://www.w3.org/TR/2000/REC-xhtml1-20000126/</a>
XLink XML Linking Language. Working Draft. S. DeRose, D.
Orchard, B. Trafford. July 1999.
<a href="http://www.w3.org/1999/07/WD-xlink-19990726">http://www.w3.org/1999/07/WD-xlink-19990726</a>
XML Extensible Markup Language (XML) 1.0
Recommendation. T. Bray, J. Paoli, C. M. Sperberg-
McQueen. February 1998.
<a href="http://www.w3.org/TR/1998/REC-xml-19980210">http://www.w3.org/TR/1998/REC-xml-19980210</a>
XML-C14N J. Boyer, "Canonical XML Version 1.0", <a href="./rfc3076">RFC 3076</a>,
September 2000. <a href="http://www.w3.org/TR/2000/CR-xml-c14n-20001026">http://www.w3.org/TR/2000/CR-xml-</a>
<a href="http://www.w3.org/TR/2000/CR-xml-c14n-20001026">c14n-20001026</a>
<a href="http://www.ietf.org/rfc/rfc3076.txt">http://www.ietf.org/rfc/rfc3076.txt</a>
XML-Japanese XML Japanese Profile. W3C NOTE. M. MURATA April
2000 <a href="http://www.w3.org/TR/2000/NOTE-japanese-xml-20000414/">http://www.w3.org/TR/2000/NOTE-japanese-xml-</a>
<a href="http://www.w3.org/TR/2000/NOTE-japanese-xml-20000414/">20000414/</a>
XML-MT Whitehead, E. and M. Murata, "XML Media Types",
July 1998. <a href="http://www.ietf.org/rfc/rfc2376.txt">http://www.ietf.org/rfc/rfc2376.txt</a>
XML-ns Namespaces in XML Recommendation. T. Bray, D.
Hollander, A. Layman. Janury 1999.
<a href="http://www.w3.org/TR/1999/REC-xml-names-19990114">http://www.w3.org/TR/1999/REC-xml-names-19990114</a>
XML-schema XML Schema Part 1: Structures Working Draft. D.
Beech, M. Maloney, N. Mendelshohn. September 2000.
<a href="http://www.w3.org/TR/2000/WD-xmlschema-1-20000922/">http://www.w3.org/TR/2000/WD-xmlschema-1-20000922/</a>
<span class="grey">Eastlake, et al. Standards Track [Page 61]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-62" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
XML Schema Part 2: Datatypes Working Draft. P.
Biron, A. Malhotra. September 2000.
<a href="http://www.w3.org/TR/2000/WD-xmlschema-2-20000922/">http://www.w3.org/TR/2000/WD-xmlschema-2-20000922/</a>
XML-Signature-RD Reagle, J., "XML Signature Requirements", <a href="./rfc2907">RFC 2907</a>,
April 2000. <a href="http://www.w3.org/TR/1999/WD-xmldsig-requirements-19991014">http://www.w3.org/TR/1999/WD-xmldsig-</a>
<a href="http://www.w3.org/TR/1999/WD-xmldsig-requirements-19991014">requirements-19991014</a>
<a href="http://www.ietf.org/rfc/rfc2807.txt">http://www.ietf.org/rfc/rfc2807.txt</a>
XPath XML Path Language (XPath)Version 1.0.
Recommendation. J. Clark, S. DeRose. October 1999.
<a href="http://www.w3.org/TR/1999/REC-xpath-19991116">http://www.w3.org/TR/1999/REC-xpath-19991116</a>
XPointer XML Pointer Language (XPointer). Candidate
Recommendation. S. DeRose, R. Daniel, E. Maler.
<a href="http://www.w3.org/TR/2000/CR-xptr-20000607">http://www.w3.org/TR/2000/CR-xptr-20000607</a>
XSL Extensible Stylesheet Language (XSL) Working Draft.
S. Adler, A. Berglund, J. Caruso, S. Deach, P.
Grosso, E. Gutentag, A. Milowski, S. Parnell, J.
Richman, S. Zilles. March 2000.
<a href="http://www.w3.org/TR/2000/WD-xsl-20000327/xslspec.html">http://www.w3.org/TR/2000/WD-xsl-</a>
<a href="http://www.w3.org/TR/2000/WD-xsl-20000327/xslspec.html">20000327/xslspec.html</a>
XSLT XSL Transforms (XSLT) Version 1.0. Recommendation.
J. Clark. November 1999.
<a href="http://www.w3.org/TR/1999/REC-xslt-19991116.html">http://www.w3.org/TR/1999/REC-xslt-19991116.html</a>
<span class="grey">Eastlake, et al. Standards Track [Page 62]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-63" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. Authors' Addresses</span>
Donald E. Eastlake 3rd
Motorola, Mail Stop: M2-450
20 Forbes Boulevard
Mansfield, MA 02048 USA
Phone: 1-508-261-5434
EMail: Donald.Eastlake@motorola.com
Joseph M. Reagle Jr., W3C
Massachusetts Institute of Technology
Laboratory for Computer Science
NE43-350, 545 Technology Square
Cambridge, MA 02139
Phone: 1.617.258.7621
EMail: reagle@w3.org
David Solo
Citigroup
909 Third Ave, 16th Floor
NY, NY 10043 USA
Phone: +1-212-559-2900
EMail: dsolo@alum.mit.edu
<span class="grey">Eastlake, et al. Standards Track [Page 63]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-64" ></span>
<span class="grey"><a href="./rfc3075">RFC 3075</a> XML-Signature Syntax and Processing March 2001</span>
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>. Full Copyright Statement</span>
Copyright (C) The Internet Society (2001). All Rights Reserved.
This document and translations of it may be copied and furnished to
others, and derivative works that comment on or otherwise explain it
or assist in its implementation may be prepared, copied, published
and distributed, in whole or in part, without restriction of any
kind, provided that the above copyright notice and this paragraph are
included on all such copies and derivative works. However, this
document itself may not be modified in any way, such as by removing
the copyright notice or references to the Internet Society or other
Internet organizations, except as needed for the purpose of
developing Internet standards in which case the procedures for
copyrights defined in the Internet Standards process must be
followed, or as required to translate it into languages other than
English.
The limited permissions granted above are perpetual and will not be
revoked by the Internet Society or its successors or assigns.
This document and the information contained herein is provided on an
"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Eastlake, et al. Standards Track [Page 64]
</pre>
|