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
|
<pre>Internet Engineering Task Force (IETF) K. Watsen
Request for Comments: 8366 Juniper Networks
Category: Standards Track M. Richardson
ISSN: 2070-1721 Sandelman Software
M. Pritikin
Cisco Systems
T. Eckert
Huawei
May 2018
<span class="h1">A Voucher Artifact for Bootstrapping Protocols</span>
Abstract
This document defines a strategy to securely assign a pledge to an
owner using an artifact signed, directly or indirectly, by the
pledge's manufacturer. This artifact is known as a "voucher".
This document defines an artifact format as a YANG-defined JSON
document that has been signed using a Cryptographic Message Syntax
(CMS) structure. Other YANG-derived formats are possible. The
voucher artifact is normally generated by the pledge's manufacturer
(i.e., the Manufacturer Authorized Signing Authority (MASA)).
This document only defines the voucher artifact, leaving it to other
documents to describe specialized protocols for accessing it.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in <a href="./rfc7841#section-2">Section 2 of RFC 7841</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="https://www.rfc-editor.org/info/rfc8366">https://www.rfc-editor.org/info/rfc8366</a>.
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
Copyright Notice
Copyright (c) 2018 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-2">2</a>. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-3">3</a>
<a href="#section-3">3</a>. Requirements Language . . . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-4">4</a>. Survey of Voucher Types . . . . . . . . . . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-5">5</a>. Voucher Artifact . . . . . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-5.1">5.1</a>. Tree Diagram . . . . . . . . . . . . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-5.2">5.2</a>. Examples . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-5.3">5.3</a>. YANG Module . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-5.4">5.4</a>. CMS Format Voucher Artifact . . . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-6">6</a>. Design Considerations . . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-6.1">6.1</a>. Renewals Instead of Revocations . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-6.2">6.2</a>. Voucher Per Pledge . . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-7">7</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-7.1">7.1</a>. Clock Sensitivity . . . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-7.2">7.2</a>. Protect Voucher PKI in HSM . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-7.3">7.3</a>. Test Domain Certificate Validity When Signing . . . . . . <a href="#page-17">17</a>
<a href="#section-7.4">7.4</a>. YANG Module Security Considerations . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-8">8</a>. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-8.1">8.1</a>. The IETF XML Registry . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-8.2">8.2</a>. The YANG Module Names Registry . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-8.3">8.3</a>. The Media Types Registry . . . . . . . . . . . . . . . . <a href="#page-19">19</a>
<a href="#section-8.4">8.4</a>. The SMI Security for S/MIME CMS Content Type Registry . . <a href="#page-20">20</a>
<a href="#section-9">9</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-9.1">9.1</a>. Normative References . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-9.2">9.2</a>. Informative References . . . . . . . . . . . . . . . . . <a href="#page-21">21</a>
Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
This document defines a strategy to securely assign a candidate
device (pledge) to an owner using an artifact signed, directly or
indirectly, by the pledge's manufacturer, i.e., the Manufacturer
Authorized Signing Authority (MASA). This artifact is known as the
"voucher".
The voucher artifact is a JSON [<a href="./rfc8259" title=""The JavaScript Object Notation (JSON) Data Interchange Format"">RFC8259</a>] document that conforms with
a data model described by YANG [<a href="./rfc7950" title=""The YANG 1.1 Data Modeling Language"">RFC7950</a>], is encoded using the rules
defined in [<a href="./rfc8259" title=""The JavaScript Object Notation (JSON) Data Interchange Format"">RFC8259</a>], and is signed using (by default) a CMS
structure [<a href="./rfc5652" title=""Cryptographic Message Syntax (CMS)"">RFC5652</a>].
The primary purpose of a voucher is to securely convey a certificate,
the "pinned-domain-cert", that a pledge can use to authenticate
subsequent interactions. A voucher may be useful in several
contexts, but the driving motivation herein is to support secure
bootstrapping mechanisms. Assigning ownership is important to
bootstrapping mechanisms so that the pledge can authenticate the
network that is trying to take control of it.
The lifetimes of vouchers may vary. In some bootstrapping protocols,
the vouchers may include a nonce restricting them to a single use,
whereas the vouchers in other bootstrapping protocols may have an
indicated lifetime. In order to support long lifetimes, this
document recommends using short lifetimes with programmatic renewal,
see <a href="#section-6.1">Section 6.1</a>.
This document only defines the voucher artifact, leaving it to other
documents to describe specialized protocols for accessing it. Some
bootstrapping protocols using the voucher artifact defined in this
document include: [<a href="#ref-ZERO-TOUCH" title=""Zero Touch Provisioning for Networking Devices"">ZERO-TOUCH</a>], [<a href="#ref-SECUREJOIN" title=""6tisch Secure Join protocol"">SECUREJOIN</a>], and [<a href="#ref-KEYINFRA" title=""Bootstrapping Remote Secure Key Infrastructures (BRSKI)"">KEYINFRA</a>]).
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Terminology</span>
This document uses the following terms:
Artifact: Used throughout to represent the voucher as instantiated
in the form of a signed structure.
Domain: The set of entities or infrastructure under common
administrative control. The goal of the bootstrapping protocol is
to enable a pledge to discover and join a domain.
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
Imprint: The process where a device obtains the cryptographic key
material to identify and trust future interactions with a network.
This term is taken from Konrad Lorenz's work in biology with new
ducklings: "during a critical period, the duckling would assume
that anything that looks like a mother duck is in fact their
mother" [<a href="#ref-Stajano99theresurrecting">Stajano99theresurrecting</a>]. An equivalent for a device is
to obtain the fingerprint of the network's root certification
authority certificate. A device that imprints on an attacker
suffers a similar fate to a duckling that imprints on a hungry
wolf. Imprinting is a term from psychology and ethology, as
described in [<a href="#ref-imprinting" title=""Wikipedia article: Imprinting"">imprinting</a>].
Join Registrar (and Coordinator): A representative of the domain
that is configured, perhaps autonomically, to decide whether a new
device is allowed to join the domain. The administrator of the
domain interfaces with a join registrar (and Coordinator) to
control this process. Typically, a join registrar is "inside" its
domain. For simplicity, this document often refers to this as
just "registrar".
MASA (Manufacturer Authorized Signing Authority): The entity that,
for the purpose of this document, signs the vouchers for a
manufacturer's pledges. In some bootstrapping protocols, the MASA
may have an Internet presence and be integral to the bootstrapping
process, whereas in other protocols the MASA may be an offline
service that has no active role in the bootstrapping process.
Owner: The entity that controls the private key of the "pinned-
domain-cert" certificate conveyed by the voucher.
Pledge: The prospective device attempting to find and securely join
a domain. When shipped, it only trusts authorized representatives
of the manufacturer.
Registrar: See join registrar.
TOFU (Trust on First Use): Where a pledge device makes no security
decisions but rather simply trusts the first domain entity it is
contacted by. Used similarly to [<a href="./rfc7435" title=""Opportunistic Security: Some Protection Most of the Time"">RFC7435</a>]. This is also known as
the "resurrecting duckling" model.
Voucher: A signed statement from the MASA service that indicates to
a pledge the cryptographic identity of the domain it should trust.
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Requirements Language</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in <a href="https://www.rfc-editor.org/bcp/bcp14">BCP</a>
<a href="https://www.rfc-editor.org/bcp/bcp14">14</a> [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>] [<a href="./rfc8174" title=""Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words"">RFC8174</a>] when, and only when, they appear in all
capitals, as shown here.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Survey of Voucher Types</span>
A voucher is a cryptographically protected statement to the pledge
device authorizing a zero-touch "imprint" on the join registrar of
the domain. The specific information a voucher provides is
influenced by the bootstrapping use case.
The voucher can impart the following information to the join
registrar and pledge:
Assertion Basis: Indicates the method that protects the imprint
(this is distinct from the voucher signature that protects the
voucher itself). This might include manufacturer-asserted
ownership verification, assured logging operations, or reliance on
pledge endpoint behavior such as secure root of trust of
measurement. The join registrar might use this information. Only
some methods are normatively defined in this document. Other
methods are left for future work.
Authentication of Join Registrar: Indicates how the pledge can
authenticate the join registrar. This document defines a
mechanism to pin the domain certificate. Pinning a symmetric key,
a raw key, or "CN-ID" or "DNS-ID" information (as defined in
[<a href="./rfc6125" title=""Representation and Verification of Domain-Based Application Service Identity within Internet Public Key Infrastructure Using X.509 (PKIX) Certificates in the Context of Transport Layer Security (TLS)"">RFC6125</a>]) is left for future work.
Anti-Replay Protections: Time- or nonce-based information to
constrain the voucher to time periods or bootstrap attempts.
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
A number of bootstrapping scenarios can be met using differing
combinations of this information. All scenarios address the primary
threat of a Man-in-The-Middle (MiTM) registrar gaining control over
the pledge device. The following combinations are "types" of
vouchers:
|Assertion |Registrar ID | Validity |
Voucher |Log-|Veri- |Trust |CN-ID or| RTC | Nonce |
Type | ged| fied |Anchor |DNS-ID | | |
---------------------------------------------------------|
Audit | X | | X | | | X |
-------------|----|-------|-------|--------|-----|-------|
Nonceless | X | | X | | X | |
Audit | | | | | | |
-------------|----|-------|-------|--------|-----|-------|
Owner Audit | X | X | X | | X | X |
-------------|----|-------|-------|--------|-----|-------|
Owner ID | | X | X | X | X | |
-------------|----|-------|----------------|-----|-------|
Bearer | X | | wildcard | optional |
out-of-scope | | | | |
-------------|----|-------|----------------|-------------|
NOTE: All voucher types include a 'pledge ID serial-number'
(not shown here for space reasons).
Audit Voucher: An Audit Voucher is named after the logging assertion
mechanisms that the registrar then "audits" to enforce local
policy. The registrar mitigates a MiTM registrar by auditing that
an unknown MiTM registrar does not appear in the log entries.
This does not directly prevent the MiTM but provides a response
mechanism that ensures the MiTM is unsuccessful. The advantage is
that actual ownership knowledge is not required on the MASA
service.
Nonceless Audit Voucher: An Audit Voucher without a validity period
statement. Fundamentally, it is the same as an Audit Voucher
except that it can be issued in advance to support network
partitions or to provide a permanent voucher for remote
deployments.
Ownership Audit Voucher: An Audit Voucher where the MASA service has
verified the registrar as the authorized owner. The MASA service
mitigates a MiTM registrar by refusing to generate Audit Vouchers
for unauthorized registrars. The registrar uses audit techniques
to supplement the MASA. This provides an ideal sharing of policy
decisions and enforcement between the vendor and the owner.
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
Ownership ID Voucher: Named after inclusion of the pledge's CN-ID or
DNS-ID within the voucher. The MASA service mitigates a MiTM
registrar by identifying the specific registrar (via WebPKI)
authorized to own the pledge.
Bearer Voucher: A Bearer Voucher is named after the inclusion of a
registrar ID wildcard. Because the registrar identity is not
indicated, this voucher type must be treated as a secret and
protected from exposure as any 'bearer' of the voucher can claim
the pledge device. Publishing a nonceless bearer voucher
effectively turns the specified pledge into a "TOFU" device with
minimal mitigation against MiTM registrars. Bearer vouchers are
out of scope.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Voucher Artifact</span>
The voucher's primary purpose is to securely assign a pledge to an
owner. The voucher informs the pledge which entity it should
consider to be its owner.
This document defines a voucher that is a JSON-encoded instance of
the YANG module defined in <a href="#section-5.3">Section 5.3</a> that has been, by default, CMS
signed.
This format is described here as a practical basis for some uses
(such as in NETCONF), but more to clearly indicate what vouchers look
like in practice. This description also serves to validate the YANG
data model.
Future work is expected to define new mappings of the voucher to
Concise Binary Object Representation (CBOR) (from JSON) and to change
the signature container from CMS to JSON Object Signing and
Encryption (JOSE) or CBOR Object Signing and Encryption (COSE). XML
or ASN.1 formats are also conceivable.
This document defines a media type and a filename extension for the
CMS-encoded JSON type. Future documents on additional formats would
define additional media types. Signaling is in the form of a MIME
Content-Type, an HTTP Accept: header, or more mundane methods like
use of a filename extension when a voucher is transferred on a USB
key.
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Tree Diagram</span>
The following tree diagram illustrates a high-level view of a voucher
document. The notation used in this diagram is described in
[<a href="./rfc8340" title=""YANG Tree Diagrams"">RFC8340</a>]. Each node in the diagram is fully described by the YANG
module in <a href="#section-5.3">Section 5.3</a>. Please review the YANG module for a detailed
description of the voucher format.
module: ietf-voucher
yang-data voucher-artifact:
+---- voucher
+---- created-on yang:date-and-time
+---- expires-on? yang:date-and-time
+---- assertion enumeration
+---- serial-number string
+---- idevid-issuer? binary
+---- pinned-domain-cert binary
+---- domain-cert-revocation-checks? boolean
+---- nonce? binary
+---- last-renewal-date? yang:date-and-time
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Examples</span>
This section provides voucher examples for illustration purposes.
These examples conform to the encoding rules defined in [<a href="./rfc8259" title=""The JavaScript Object Notation (JSON) Data Interchange Format"">RFC8259</a>].
The following example illustrates an ephemeral voucher (uses a
nonce). The MASA generated this voucher using the 'logged' assertion
type, knowing that it would be suitable for the pledge making the
request.
{
"ietf-voucher:voucher": {
"created-on": "2016-10-07T19:31:42Z",
"assertion": "logged",
"serial-number": "JADA123456789",
"idevid-issuer": "base64encodedvalue==",
"pinned-domain-cert": "base64encodedvalue==",
"nonce": "base64encodedvalue=="
}
}
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
The following example illustrates a non-ephemeral voucher (no nonce).
While the voucher itself expires after two weeks, it presumably can
be renewed for up to a year. The MASA generated this voucher using
the 'verified' assertion type, which should satisfy all pledges.
{
"ietf-voucher:voucher": {
"created-on": "2016-10-07T19:31:42Z",
"expires-on": "2016-10-21T19:31:42Z",
"assertion": "verified",
"serial-number": "JADA123456789",
"idevid-issuer": "base64encodedvalue==",
"pinned-domain-cert": "base64encodedvalue==",
"domain-cert-revocation-checks": "true",
"last-renewal-date": "2017-10-07T19:31:42Z"
}
}
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. YANG Module</span>
Following is a YANG [<a href="./rfc7950" title=""The YANG 1.1 Data Modeling Language"">RFC7950</a>] module formally describing the
voucher's JSON document structure.
<CODE BEGINS> file "ietf-voucher@2018-05-09.yang"
module ietf-voucher {
yang-version 1.1;
namespace "urn:ietf:params:xml:ns:yang:ietf-voucher";
prefix vch;
import ietf-yang-types {
prefix yang;
reference "<a href="./rfc6991">RFC 6991</a>: Common YANG Data Types";
}
import ietf-restconf {
prefix rc;
description
"This import statement is only present to access
the yang-data extension defined in <a href="./rfc8040">RFC 8040</a>.";
reference "<a href="./rfc8040">RFC 8040</a>: RESTCONF Protocol";
}
organization
"IETF ANIMA Working Group";
contact
"WG Web: <<a href="https://datatracker.ietf.org/wg/anima/">https://datatracker.ietf.org/wg/anima/</a>>
WG List: <mailto:anima@ietf.org>
Author: Kent Watsen
<mailto:kwatsen@juniper.net>
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
Author: Max Pritikin
<mailto:pritikin@cisco.com>
Author: Michael Richardson
<mailto:mcr+ietf@sandelman.ca>
Author: Toerless Eckert
<mailto:tte+ietf@cs.fau.de>";
description
"This module defines the format for a voucher, which is produced by
a pledge's manufacturer or delegate (MASA) to securely assign a
pledge to an 'owner', so that the pledge may establish a secure
connection to the owner's network infrastructure.
The key words 'MUST', 'MUST NOT', 'REQUIRED', 'SHALL', 'SHALL
NOT', 'SHOULD', 'SHOULD NOT', 'RECOMMENDED', 'NOT RECOMMENDED',
'MAY', and 'OPTIONAL' in this document are to be interpreted as
described in <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a> (<a href="./rfc2119">RFC 2119</a>) (<a href="./rfc8174">RFC 8174</a>) when, and only when, they
appear in all capitals, as shown here.
Copyright (c) 2018 IETF Trust and the persons identified as
authors of the code. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, is permitted pursuant to, and subject to the license
terms contained in, the Simplified BSD License set forth in <a href="#section-4">Section</a>
<a href="#section-4">4</a>.c of the IETF Trust's Legal Provisions Relating to IETF Documents
(<a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a>).
This version of this YANG module is part of <a href="./rfc8366">RFC 8366</a>; see the RFC
itself for full legal notices.";
revision 2018-05-09 {
description
"Initial version";
reference "<a href="./rfc8366">RFC 8366</a>: Voucher Profile for Bootstrapping Protocols";
}
// Top-level statement
rc:yang-data voucher-artifact {
uses voucher-artifact-grouping;
}
// Grouping defined for future augmentations
grouping voucher-artifact-grouping {
description
"Grouping to allow reuse/extensions in future work.";
container voucher {
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
description
"A voucher assigns a pledge to an owner (pinned-domain-cert).";
leaf created-on {
type yang:date-and-time;
mandatory true;
description
"A value indicating the date this voucher was created. This
node is primarily for human consumption and auditing. Future
work MAY create verification requirements based on this
node.";
}
leaf expires-on {
type yang:date-and-time;
must 'not(../nonce)';
description
"A value indicating when this voucher expires. The node is
optional as not all pledges support expirations, such as
pledges lacking a reliable clock.
If this field exists, then the pledges MUST ensure that
the expires-on time has not yet passed. A pledge without
an accurate clock cannot meet this requirement.
The expires-on value MUST NOT exceed the expiration date
of any of the listed 'pinned-domain-cert' certificates.";
}
leaf assertion {
type enumeration {
enum verified {
description
"Indicates that the ownership has been positively
verified by the MASA (e.g., through sales channel
integration).";
}
enum logged {
description
"Indicates that the voucher has been issued after
minimal verification of ownership or control. The
issuance has been logged for detection of
potential security issues (e.g., recipients of
vouchers might verify for themselves that unexpected
vouchers are not in the log). This is similar to
unsecured trust-on-first-use principles but with the
logging providing a basis for detecting unexpected
events.";
}
enum proximity {
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
description
"Indicates that the voucher has been issued after
the MASA verified a proximity proof provided by the
device and target domain. The issuance has been logged
for detection of potential security issues. This is
stronger than just logging, because it requires some
verification that the pledge and owner are
in communication but is still dependent on analysis of
the logs to detect unexpected events.";
}
}
mandatory true;
description
"The assertion is a statement from the MASA regarding how
the owner was verified. This statement enables pledges
to support more detailed policy checks. Pledges MUST
ensure that the assertion provided is acceptable, per
local policy, before processing the voucher.";
}
leaf serial-number {
type string;
mandatory true;
description
"The serial-number of the hardware. When processing a
voucher, a pledge MUST ensure that its serial-number
matches this value. If no match occurs, then the
pledge MUST NOT process this voucher.";
}
leaf idevid-issuer {
type binary;
description
"The Authority Key Identifier OCTET STRING (as defined in
<a href="./rfc5280#section-4.2.1.1">Section 4.2.1.1 of RFC 5280</a>) from the pledge's IDevID
certificate. Optional since some serial-numbers are
already unique within the scope of a MASA.
Inclusion of the statistically unique key identifier
ensures statistically unique identification of the hardware.
When processing a voucher, a pledge MUST ensure that its
IDevID Authority Key Identifier matches this value. If no
match occurs, then the pledge MUST NOT process this voucher.
When issuing a voucher, the MASA MUST ensure that this field
is populated for serial-numbers that are not otherwise unique
within the scope of the MASA.";
}
leaf pinned-domain-cert {
type binary;
mandatory true;
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
description
"An X.509 v3 certificate structure, as specified by <a href="./rfc5280">RFC 5280</a>,
using Distinguished Encoding Rules (DER) encoding, as defined
in ITU-T X.690.
This certificate is used by a pledge to trust a Public Key
Infrastructure in order to verify a domain certificate
supplied to the pledge separately by the bootstrapping
protocol. The domain certificate MUST have this certificate
somewhere in its chain of certificates. This certificate
MAY be an end-entity certificate, including a self-signed
entity.";
reference
"<a href="./rfc5280">RFC 5280</a>:
Internet X.509 Public Key Infrastructure Certificate
and Certificate Revocation List (CRL) Profile.
ITU-T X.690:
Information technology - ASN.1 encoding rules:
Specification of Basic Encoding Rules (BER),
Canonical Encoding Rules (CER) and Distinguished
Encoding Rules (DER).";
}
leaf domain-cert-revocation-checks {
type boolean;
description
"A processing instruction to the pledge that it MUST (true)
or MUST NOT (false) verify the revocation status for the
pinned domain certificate. If this field is not set, then
normal PKIX behavior applies to validation of the domain
certificate.";
}
leaf nonce {
type binary {
length "8..32";
}
must 'not(../expires-on)';
description
"A value that can be used by a pledge in some bootstrapping
protocols to enable anti-replay protection. This node is
optional because it is not used by all bootstrapping
protocols.
When present, the pledge MUST compare the provided nonce
value with another value that the pledge randomly generated
and sent to a bootstrap server in an earlier bootstrapping
message. If the values do not match, then the pledge MUST
NOT process this voucher.";
}
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
leaf last-renewal-date {
type yang:date-and-time;
must '../expires-on';
description
"The date that the MASA projects to be the last date it
will renew a voucher on. This field is merely informative;
it is not processed by pledges.
Circumstances may occur after a voucher is generated that
may alter a voucher's validity period. For instance, a
vendor may associate validity periods with support contracts,
which may be terminated or extended over time.";
}
} // end voucher
} // end voucher-grouping
}
<CODE ENDS>
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. CMS Format Voucher Artifact</span>
The IETF evolution of PKCS#7 is CMS [<a href="./rfc5652" title=""Cryptographic Message Syntax (CMS)"">RFC5652</a>]. A CMS-signed voucher,
the default type, contains a ContentInfo structure with the voucher
content. An eContentType of 40 indicates that the content is a JSON-
encoded voucher.
The signing structure is a CMS SignedData structure, as specified by
<a href="./rfc5652#section-5.1">Section 5.1 of [RFC5652]</a>, encoded using ASN.1 Distinguished Encoding
Rules (DER), as specified in ITU-T X.690 [<a href="#ref-ITU.X690.2015">ITU.X690.2015</a>].
To facilitate interoperability, <a href="#section-8.3">Section 8.3</a> in this document
registers the media type "application/voucher-cms+json" and the
filename extension ".vcj".
The CMS structure MUST contain a 'signerInfo' structure, as described
in <a href="./rfc5652#section-5.1">Section 5.1 of [RFC5652]</a>, containing the signature generated over
the content using a private key trusted by the recipient. Normally,
the recipient is the pledge and the signer is the MASA. Another
possible use could be as a "signed voucher request" format
originating from the pledge or registrar toward the MASA. Within
this document, the signer is assumed to be the MASA.
Note that <a href="./rfc5652#section-5.1">Section 5.1 of [RFC5652]</a> includes a discussion about how to
validate a CMS object, which is really a PKCS7 object (cmsVersion=1).
Intermediate systems (such the Bootstrapping Remote Secure Key
Infrastructures (BRSKI) registrar) that might need to evaluate the
voucher in flight MUST be prepared for such an older format. No
signaling is necessary, as the manufacturer knows the capabilities of
the pledge and will use an appropriate format voucher for each
pledge.
The CMS structure SHOULD also contain all of the certificates leading
up to and including the signer's trust anchor certificate known to
the recipient. The inclusion of the trust anchor is unusual in many
applications, but third parties cannot accurately audit the
transaction without it.
The CMS structure MAY also contain revocation objects for any
intermediate certificate authorities (CAs) between the voucher issuer
and the trust anchor known to the recipient. However, the use of
CRLs and other validity mechanisms is discouraged, as the pledge is
unlikely to be able to perform online checks and is unlikely to have
a trusted clock source. As described below, the use of short-lived
vouchers and/or a pledge-provided nonce provides a freshness
guarantee.
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Design Considerations</span>
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Renewals Instead of Revocations</span>
The lifetimes of vouchers may vary. In some bootstrapping protocols,
the vouchers may be created and consumed immediately, whereas in
other bootstrapping solutions, there may be a significant time delay
between when a voucher is created and when it is consumed. In cases
when there is a time delay, there is a need for the pledge to ensure
that the assertions made when the voucher was created are still
valid.
A revocation artifact is generally used to verify the continued
validity of an assertion such as a PKIX certificate, web token, or a
"voucher". With this approach, a potentially long-lived assertion is
paired with a reasonably fresh revocation status check to ensure that
the assertion is still valid. However, this approach increases
solution complexity, as it introduces the need for additional
protocols and code paths to distribute and process the revocations.
Addressing the shortcomings of revocations, this document recommends
instead the use of lightweight renewals of short-lived non-revocable
vouchers. That is, rather than issue a long-lived voucher, where the
'expires-on' leaf is set to some distant date, the expectation is for
the MASA to instead issue a short-lived voucher, where the 'expires-
on' leaf is set to a relatively near date, along with a promise
(reflected in the 'last-renewal-date' field) to reissue the voucher
again when needed. Importantly, while issuing the initial voucher
may incur heavyweight verification checks ("Are you who you say you
are?" "Does the pledge actually belong to you?"), reissuing the
voucher should be a lightweight process, as it ostensibly only
updates the voucher's validity period. With this approach, there is
only the one artifact, and only one code path is needed to process
it; there is no possibility of a pledge choosing to skip the
revocation status check because, for instance, the OCSP Responder is
not reachable.
While this document recommends issuing short-lived vouchers, the
voucher artifact does not restrict the ability to create long-lived
voucher, if required; however, no revocation method is described.
Note that a voucher may be signed by a chain of intermediate CAs
leading up to the trust anchor certificate known by the pledge. Even
though the voucher itself is not revocable, it may still be revoked,
per se, if one of the intermediate CA certificates is revoked.
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Voucher Per Pledge</span>
The solution described herein originally enabled a single voucher to
apply to many pledges, using lists of regular expressions to
represent ranges of serial-numbers. However, it was determined that
blocking the renewal of a voucher that applied to many devices would
be excessive when only the ownership for a single pledge needed to be
blocked. Thus, the voucher format now only supports a single serial-
number to be listed.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Security Considerations</span>
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Clock Sensitivity</span>
An attacker could use an expired voucher to gain control over a
device that has no understanding of time. The device cannot trust
NTP as a time reference, as an attacker could control the NTP stream.
There are three things to defend against this: 1) devices are
required to verify that the expires-on field has not yet passed, 2)
devices without access to time can use nonces to get ephemeral
vouchers, and 3) vouchers without expiration times may be used, which
will appear in the audit log, informing the security decision.
This document defines a voucher format that contains time values for
expirations, which require an accurate clock in order to be processed
correctly. Vendors planning on issuing vouchers with expiration
values must ensure that devices have an accurate clock when shipped
from manufacturing facilities and take steps to prevent clock
tampering. If it is not possible to ensure clock accuracy, then
vouchers with expirations should not be issued.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Protect Voucher PKI in HSM</span>
Pursuant the recommendation made in <a href="#section-6.1">Section 6.1</a> for the MASA to be
deployed as an online voucher signing service, it is RECOMMENDED that
the MASA's private key used for signing vouchers is protected by a
hardware security module (HSM).
<span class="h3"><a class="selflink" id="section-7.3" href="#section-7.3">7.3</a>. Test Domain Certificate Validity When Signing</span>
If a domain certificate is compromised, then any outstanding vouchers
for that domain could be used by the attacker. The domain
administrator is clearly expected to initiate revocation of any
domain identity certificates (as is normal in PKI solutions).
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
Similarly,they are expected to contact the MASA to indicate that an
outstanding (presumably short lifetime) voucher should be blocked
from automated renewal. Protocols for voucher distribution are
RECOMMENDED to check for revocation of domain identity certificates
before the signing of vouchers.
<span class="h3"><a class="selflink" id="section-7.4" href="#section-7.4">7.4</a>. YANG Module Security Considerations</span>
The YANG module specified in this document defines the schema for
data that is subsequently encapsulated by a CMS signed-data content
type, as described in <a href="./rfc5652#section-5">Section 5 of [RFC5652]</a>. As such, all of the
YANG modeled data is protected from modification.
Implementations should be aware that the signed data is only
protected from external modification; the data is still visible.
This potential disclosure of information doesn't affect security so
much as privacy. In particular, adversaries can glean information
such as which devices belong to which organizations and which CRL
Distribution Point and/or OCSP Responder URLs are accessed to
validate the vouchers. When privacy is important, the CMS signed-
data content type SHOULD be encrypted, either by conveying it via a
mutually authenticated secure transport protocol (e.g., TLS
[<a href="./rfc5246" title=""The Transport Layer Security (TLS) Protocol Version 1.2"">RFC5246</a>]) or by encapsulating the signed-data content type with an
enveloped-data content type (<a href="./rfc5652#section-6">Section 6 of [RFC5652]</a>), though details
for how to do this are outside the scope of this document.
The use of YANG to define data structures, via the 'yang-data'
statement, is relatively new and distinct from the traditional use of
YANG to define an API accessed by network management protocols such
as NETCONF [<a href="./rfc6241" title=""Network Configuration Protocol (NETCONF)"">RFC6241</a>] and RESTCONF [<a href="./rfc8040" title=""RESTCONF Protocol"">RFC8040</a>]. For this reason, these
guidelines do not follow template described by Section 3.7 of
[<a href="#ref-YANG-GUIDE" title=""Guidelines for Authors and Reviewers of YANG Data Model Documents"">YANG-GUIDE</a>].
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. IANA Considerations</span>
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. The IETF XML Registry</span>
This document registers a URI in the "IETF XML Registry" [<a href="./rfc3688" title=""The IETF XML Registry"">RFC3688</a>].
IANA has registered the following:
URI: urn:ietf:params:xml:ns:yang:ietf-voucher
Registrant Contact: The ANIMA WG of the IETF.
XML: N/A, the requested URI is an XML namespace.
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. The YANG Module Names Registry</span>
This document registers a YANG module in the "YANG Module Names"
registry [<a href="./rfc6020" title=""YANG - A Data Modeling Language for the Network Configuration Protocol (NETCONF)"">RFC6020</a>]. IANA has registered the following:
name: ietf-voucher
namespace: urn:ietf:params:xml:ns:yang:ietf-voucher
prefix: vch
reference: <a href="./rfc8366">RFC 8366</a>
<span class="h3"><a class="selflink" id="section-8.3" href="#section-8.3">8.3</a>. The Media Types Registry</span>
This document registers a new media type in the "Media Types"
registry [<a href="./rfc6838" title=""Media Type Specifications and Registration Procedures"">RFC6838</a>]. IANA has registered the following:
Type name: application
Subtype name: voucher-cms+json
Required parameters: none
Optional parameters: none
Encoding considerations: CMS-signed JSON vouchers are ASN.1/DER
encoded.
Security considerations: See <a href="#section-7">Section 7</a>
Interoperability considerations: The format is designed to be
broadly interoperable.
Published specification: <a href="./rfc8366">RFC 8366</a>
Applications that use this media type: ANIMA, 6tisch, and NETCONF
zero-touch imprinting systems.
Fragment identifier considerations: none
Additional information:
Deprecated alias names for this type: none
Magic number(s): None
File extension(s): .vcj
Macintosh file type code(s): none
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
Person and email address to contact for further information:
IETF ANIMA WG
Intended usage: LIMITED
Restrictions on usage: NONE
Author: ANIMA WG
Change controller: IETF
Provisional registration? (standards tree only): NO
<span class="h3"><a class="selflink" id="section-8.4" href="#section-8.4">8.4</a>. The SMI Security for S/MIME CMS Content Type Registry</span>
IANA has registered the following OID in the "SMI Security for S/MIME
CMS Content Type (1.2.840.113549.1.9.16.1)" registry:
Decimal Description References
------- -------------------------------------- ----------
40 id-ct-animaJSONVoucher <a href="./rfc8366">RFC 8366</a>
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. References</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. Normative References</span>
[<a id="ref-ITU.X690.2015">ITU.X690.2015</a>]
International Telecommunication Union, "Information
Technology - ASN.1 encoding rules: Specification of
Basic Encoding Rules (BER), Canonical Encoding Rules
(CER) and Distinguished Encoding Rules (DER)", ITU-T
Recommendation X.690, ISO/IEC 8825-1, August 2015,
<<a href="https://www.itu.int/rec/T-REC-X.690/">https://www.itu.int/rec/T-REC-X.690/</a>>.
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>,
DOI 10.17487/RFC2119, March 1997,
<<a href="https://www.rfc-editor.org/info/rfc2119">https://www.rfc-editor.org/info/rfc2119</a>>.
[<a id="ref-RFC5652">RFC5652</a>] Housley, R., "Cryptographic Message Syntax (CMS)",
STD 70, <a href="./rfc5652">RFC 5652</a>, DOI 10.17487/RFC5652, September 2009,
<<a href="https://www.rfc-editor.org/info/rfc5652">https://www.rfc-editor.org/info/rfc5652</a>>.
[<a id="ref-RFC6020">RFC6020</a>] Bjorklund, M., Ed., "YANG - A Data Modeling Language for
the Network Configuration Protocol (NETCONF)", <a href="./rfc6020">RFC 6020</a>,
DOI 10.17487/RFC6020, October 2010,
<<a href="https://www.rfc-editor.org/info/rfc6020">https://www.rfc-editor.org/info/rfc6020</a>>.
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
[<a id="ref-RFC7950">RFC7950</a>] Bjorklund, M., Ed., "The YANG 1.1 Data Modeling
Language", <a href="./rfc7950">RFC 7950</a>, DOI 10.17487/RFC7950, August 2016,
<<a href="https://www.rfc-editor.org/info/rfc7950">https://www.rfc-editor.org/info/rfc7950</a>>.
[<a id="ref-RFC8174">RFC8174</a>] Leiba, B., "Ambiguity of Uppercase vs Lowercase in <a href="./rfc2119">RFC</a>
<a href="./rfc2119">2119</a> Key Words", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc8174">RFC 8174</a>, DOI 10.17487/RFC8174,
May 2017, <<a href="https://www.rfc-editor.org/info/rfc8174">https://www.rfc-editor.org/info/rfc8174</a>>.
[<a id="ref-RFC8259">RFC8259</a>] Bray, T., Ed., "The JavaScript Object Notation (JSON)
Data Interchange Format", STD 90, <a href="./rfc8259">RFC 8259</a>,
DOI 10.17487/RFC8259, December 2017,
<<a href="https://www.rfc-editor.org/info/rfc8259">https://www.rfc-editor.org/info/rfc8259</a>>.
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. Informative References</span>
[<a id="ref-imprinting">imprinting</a>] Wikipedia, "Wikipedia article: Imprinting", February
2018, <<a href="https://en.wikipedia.org/w/index.php?title=">https://en.wikipedia.org/w/index.php?title=</a>
Imprinting_(psychology)&oldid=825757556>.
[<a id="ref-KEYINFRA">KEYINFRA</a>] Pritikin, M., Richardson, M., Behringer, M., Bjarnason,
S., and K. Watsen, "Bootstrapping Remote Secure Key
Infrastructures (BRSKI)", Work in Progress,
<a href="./draft-ietf-anima-bootstrapping-keyinfra-12">draft-ietf-anima-bootstrapping-keyinfra-12</a>, March 2018.
[<a id="ref-RFC3688">RFC3688</a>] Mealling, M., "The IETF XML Registry", <a href="https://www.rfc-editor.org/bcp/bcp81">BCP 81</a>, <a href="./rfc3688">RFC 3688</a>,
DOI 10.17487/RFC3688, January 2004,
<<a href="https://www.rfc-editor.org/info/rfc3688">https://www.rfc-editor.org/info/rfc3688</a>>.
[<a id="ref-RFC5246">RFC5246</a>] Dierks, T. and E. Rescorla, "The Transport Layer
Security (TLS) Protocol Version 1.2", <a href="./rfc5246">RFC 5246</a>,
DOI 10.17487/RFC5246, August 2008,
<<a href="https://www.rfc-editor.org/info/rfc5246">https://www.rfc-editor.org/info/rfc5246</a>>.
[<a id="ref-RFC6125">RFC6125</a>] Saint-Andre, P. and J. Hodges, "Representation and
Verification of Domain-Based Application Service
Identity within Internet Public Key Infrastructure Using
X.509 (PKIX) Certificates in the Context of Transport
Layer Security (TLS)", <a href="./rfc6125">RFC 6125</a>, DOI 10.17487/RFC6125,
March 2011, <<a href="https://www.rfc-editor.org/info/rfc6125">https://www.rfc-editor.org/info/rfc6125</a>>.
[<a id="ref-RFC6241">RFC6241</a>] Enns, R., Ed., Bjorklund, M., Ed., Schoenwaelder, J.,
Ed., and A. Bierman, Ed., "Network Configuration
Protocol (NETCONF)", <a href="./rfc6241">RFC 6241</a>, DOI 10.17487/RFC6241,
June 2011, <<a href="https://www.rfc-editor.org/info/rfc6241">https://www.rfc-editor.org/info/rfc6241</a>>.
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
[<a id="ref-RFC6838">RFC6838</a>] Freed, N., Klensin, J., and T. Hansen, "Media Type
Specifications and Registration Procedures", <a href="https://www.rfc-editor.org/bcp/bcp13">BCP 13</a>,
<a href="./rfc6838">RFC 6838</a>, DOI 10.17487/RFC6838, January 2013,
<<a href="https://www.rfc-editor.org/info/rfc6838">https://www.rfc-editor.org/info/rfc6838</a>>.
[<a id="ref-RFC7435">RFC7435</a>] Dukhovni, V., "Opportunistic Security: Some Protection
Most of the Time", <a href="./rfc7435">RFC 7435</a>, DOI 10.17487/RFC7435,
December 2014,
<<a href="https://www.rfc-editor.org/info/rfc7435">https://www.rfc-editor.org/info/rfc7435</a>>.
[<a id="ref-RFC8040">RFC8040</a>] Bierman, A., Bjorklund, M., and K. Watsen, "RESTCONF
Protocol", <a href="./rfc8040">RFC 8040</a>, DOI 10.17487/RFC8040, January 2017,
<<a href="https://www.rfc-editor.org/info/rfc8040">https://www.rfc-editor.org/info/rfc8040</a>>.
[<a id="ref-RFC8340">RFC8340</a>] Bjorklund, M. and L. Berger, Ed., "YANG Tree Diagrams",
<a href="https://www.rfc-editor.org/bcp/bcp215">BCP 215</a>, <a href="./rfc8340">RFC 8340</a>, DOI 10.17487/RFC8340, March 2018,
<<a href="https://www.rfc-editor.org/info/rfc8340">https://www.rfc-editor.org/info/rfc8340</a>>.
[<a id="ref-SECUREJOIN">SECUREJOIN</a>] Richardson, M., <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&q=inurl:draft-+%226tisch+Secure+Join+protocol%22'>"6tisch Secure Join protocol"</a>, Work in
Progress, <a href="./draft-ietf-6tisch-dtsecurity-secure-join-01">draft-ietf-6tisch-dtsecurity-secure-join-01</a>,
February 2017.
[<a id="ref-Stajano99theresurrecting">Stajano99theresurrecting</a>]
Stajano, F. and R. Anderson, "The Resurrecting Duckling:
Security Issues for Ad-Hoc Wireless Networks", 1999,
<<a href="https://www.cl.cam.ac.uk/research/dtg/www/files/publications/public/files/tr.1999.2.pdf">https://www.cl.cam.ac.uk/research/dtg/www/files/</a>
<a href="https://www.cl.cam.ac.uk/research/dtg/www/files/publications/public/files/tr.1999.2.pdf">publications/public/files/tr.1999.2.pdf</a>>.
[<a id="ref-YANG-GUIDE">YANG-GUIDE</a>] Bierman, A., "Guidelines for Authors and Reviewers of
YANG Data Model Documents", Work in Progress,
<a href="./draft-ietf-netmod-rfc6087bis-20">draft-ietf-netmod-rfc6087bis-20</a>, March 2018.
[<a id="ref-ZERO-TOUCH">ZERO-TOUCH</a>] Watsen, K., Abrahamsson, M., and I. Farrer, "Zero Touch
Provisioning for Networking Devices", Work in Progress,
<a href="./draft-ietf-netconf-zerotouch-21">draft-ietf-netconf-zerotouch-21</a>, March 2018.
<span class="grey">Watsen, 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="./rfc8366">RFC 8366</a> Voucher Profile May 2018</span>
Acknowledgements
The authors would like to thank for following for lively discussions
on list and in the halls (ordered by last name): William Atwood,
Toerless Eckert, and Sheng Jiang.
Russ Housley provided the upgrade from PKCS7 to CMS (<a href="./rfc5652">RFC 5652</a>) along
with the detailed CMS structure diagram.
Authors' Addresses
Kent Watsen
Juniper Networks
Email: kwatsen@juniper.net
Michael C. Richardson
Sandelman Software
Email: mcr+ietf@sandelman.ca
URI: <a href="http://www.sandelman.ca/">http://www.sandelman.ca/</a>
Max Pritikin
Cisco Systems
Email: pritikin@cisco.com
Toerless Eckert
Huawei USA - Futurewei Technologies Inc.
2330 Central Expy
Santa Clara 95050
United States of America
Email: tte+ietf@cs.fau.de, toerless.eckert@huawei.com
Watsen, et al. Standards Track [Page 23]
</pre>
|