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
|
<pre>Internet Engineering Task Force (IETF) Y. Nir
Request for Comments: 8247 Dell EMC
Obsoletes: <a href="./rfc4307">4307</a> T. Kivinen
Updates: <a href="./rfc7296">7296</a>
Category: Standards Track P. Wouters
ISSN: 2070-1721 Red Hat
D. Migault
Ericsson
September 2017
<span class="h1">Algorithm Implementation Requirements and Usage Guidance</span>
<span class="h1">for the Internet Key Exchange Protocol Version 2 (IKEv2)</span>
Abstract
The IPsec series of protocols makes use of various cryptographic
algorithms in order to provide security services. The Internet Key
Exchange (IKE) protocol is used to negotiate the IPsec Security
Association (IPsec SA) parameters, such as which algorithms should be
used. To ensure interoperability between different implementations,
it is necessary to specify a set of algorithm implementation
requirements and usage guidance to ensure that there is at least one
algorithm that all implementations support. This document updates
<a href="./rfc7296">RFC 7296</a> and obsoletes <a href="./rfc4307">RFC 4307</a> in defining the current algorithm
implementation requirements and usage guidance for IKEv2, and does
minor cleaning up of the IKEv2 IANA registry. This document does not
update the algorithms used for packet encryption using IPsec
Encapsulating Security Payload (ESP).
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/rfc8247">https://www.rfc-editor.org/info/rfc8247</a>.
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
Copyright Notice
Copyright (c) 2017 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-2">2</a>
<a href="#section-1.1">1.1</a>. Conventions Used in This Document ..........................<a href="#page-3">3</a>
1.2. Updating Algorithm Implementation Requirements and
Usage Guidance .............................................<a href="#page-4">4</a>
<a href="#section-1.3">1.3</a>. Updating Algorithm Requirement Levels ......................<a href="#page-4">4</a>
<a href="#section-1.4">1.4</a>. Document Audience ..........................................<a href="#page-5">5</a>
<a href="#section-2">2</a>. Algorithm Selection .............................................<a href="#page-5">5</a>
<a href="#section-2.1">2.1</a>. Type 1 - IKEv2 Encryption Algorithm Transforms .............<a href="#page-5">5</a>
<a href="#section-2.2">2.2</a>. Type 2 - IKEv2 Pseudorandom Function Transforms ............<a href="#page-7">7</a>
<a href="#section-2.3">2.3</a>. Type 3 - IKEv2 Integrity Algorithm Transforms ..............<a href="#page-8">8</a>
<a href="#section-2.4">2.4</a>. Type 4 - IKEv2 Diffie-Hellman Group Transforms .............<a href="#page-9">9</a>
<a href="#section-2.5">2.5</a>. Summary of Changes from <a href="./rfc4307">RFC 4307</a> ..........................<a href="#page-11">11</a>
<a href="#section-3">3</a>. IKEv2 Authentication ...........................................<a href="#page-11">11</a>
<a href="#section-3.1">3.1</a>. IKEv2 Authentication Method ...............................<a href="#page-12">12</a>
<a href="#section-3.1.1">3.1.1</a>. Recommendations for RSA Key Length .................<a href="#page-13">13</a>
<a href="#section-3.2">3.2</a>. Digital Signature Recommendations .........................<a href="#page-13">13</a>
<a href="#section-4">4</a>. Algorithms for Internet of Things ..............................<a href="#page-14">14</a>
<a href="#section-5">5</a>. Security Considerations ........................................<a href="#page-15">15</a>
<a href="#section-6">6</a>. IANA Considerations ............................................<a href="#page-15">15</a>
<a href="#section-7">7</a>. References .....................................................<a href="#page-16">16</a>
<a href="#section-7.1">7.1</a>. Normative References ......................................<a href="#page-16">16</a>
<a href="#section-7.2">7.2</a>. Informative References ....................................<a href="#page-17">17</a>
Acknowledgements ..................................................<a href="#page-17">17</a>
Authors' Addresses ................................................<a href="#page-19">19</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
The Internet Key Exchange (IKE) protocol [<a href="./rfc7296" title=""Internet Key Exchange Protocol Version 2 (IKEv2)"">RFC7296</a>] is used to
negotiate the parameters of the IPsec SA, such as the encryption and
authentication algorithms and the keys for the protected
communications between the two endpoints. The IKE protocol itself is
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
also protected by cryptographic algorithms, which are negotiated
between the two endpoints using IKE. Different implementations of
IKE may negotiate different algorithms based on their individual
local policy. To ensure interoperability, a set of "mandatory-to-
implement" IKE cryptographic algorithms is defined.
This document describes the parameters of the IKE protocol and
updates the IKEv2 specification. It changes the mandatory-to-
implement authentication algorithms in <a href="./rfc7296#section-4">Section 4 of [RFC7296]</a> by
saying that RSA key lengths of less than 2048 SHOULD NOT be used. It
does not describe the cryptographic parameters of the Authentication
Header (AH) or ESP protocols.
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Conventions Used in This Document</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 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.
When used in the tables in this document, these terms indicate that
the listed algorithm MUST, MUST NOT, SHOULD, SHOULD NOT, or MAY be
implemented as part of an IKEv2 implementation. Additional terms
used in this document are:
SHOULD+ This term means the same as SHOULD. However, it is likely
that an algorithm marked as SHOULD+ will be promoted at
some future time to be a MUST.
SHOULD- This term means the same as SHOULD. However, an algorithm
marked as SHOULD- may be deprecated to a MAY in a future
version of this document.
MUST- This term means the same as MUST. However, it is expected
at some point that this algorithm will no longer be a MUST
in a future document. Although its status will be
determined at a later time, it is reasonable to expect that
if a future revision of a document alters the status of a
MUST- algorithm, it will remain at least a SHOULD or a
SHOULD- level.
IoT This abbreviation stands for "Internet of Things".
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. Updating Algorithm Implementation Requirements and Usage Guidance</span>
The field of cryptography evolves continuously. New, stronger
algorithms appear and existing algorithms are found to be less secure
than originally thought. Therefore, algorithm implementation
requirements and usage guidance need to be updated from time to time
to reflect the new reality. The choices for algorithms must be
conservative to minimize the risk of algorithm compromise.
Algorithms need to be suitable for a wide variety of CPU
architectures and device deployments ranging from high-end bulk
encryption devices to small low-power IoT devices.
The algorithm implementation requirements and usage guidance may need
to change over time to adapt to the changing world. For this reason,
the selection of mandatory-to-implement algorithms was removed from
the main IKEv2 specification and placed in this separate document.
<span class="h3"><a class="selflink" id="section-1.3" href="#section-1.3">1.3</a>. Updating Algorithm Requirement Levels</span>
The mandatory-to-implement algorithm of tomorrow should already be
available in most implementations of IKE by the time it is made
mandatory. This document attempts to identify and introduce those
algorithms for future mandatory-to-implement status. There is no
guarantee that the algorithms in use today may become mandatory in
the future. Published algorithms are continuously subjected to
cryptographic attack and may become too weak or could become
completely broken before this document is updated.
This document provides updated recommendations for the mandatory-to-
implement algorithms. As a result, any algorithm listed at the IKEv2
IANA registry not mentioned in this document MAY be implemented. For
clarification and consistency with [<a href="./rfc4307" title=""Cryptographic Algorithms for Use in the Internet Key Exchange Version 2 (IKEv2)"">RFC4307</a>], an algorithm will be
denoted here as MAY only when it has been downgraded.
Although this document updates the algorithms to keep the IKEv2
communication secure over time, it also aims at providing
recommendations so that IKEv2 implementations remain interoperable.
IKEv2 interoperability is addressed by an incremental introduction or
deprecation of algorithms. In addition, this document also considers
the new use cases for IKEv2 deployment, such as Internet of Things
(IoT).
It is expected that deprecation of an algorithm is performed
gradually. This provides time for various implementations to update
their implemented algorithms while remaining interoperable. Unless
there are strong security reasons, an algorithm is expected to be
downgraded from MUST to MUST- or SHOULD, instead of MUST NOT.
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
Similarly, an algorithm that has not been mentioned as mandatory-to-
implement is expected to be introduced with a SHOULD instead of a
MUST.
The current trend toward Internet of Things and its adoption of IKEv2
requires this specific use case to be taken into account as well.
IoT devices are resource-constrained devices and their choice of
algorithms are motivated by minimizing the footprint of the code, the
computation effort, and the size of the messages to send. This
document indicates "(IoT)" when a specified algorithm is specifically
listed for IoT devices. Requirement levels that are marked as "IoT"
apply to IoT devices and to server-side implementations that might
presumably need to interoperate with them, including any general-
purpose VPN gateways.
<span class="h3"><a class="selflink" id="section-1.4" href="#section-1.4">1.4</a>. Document Audience</span>
The recommendations of this document mostly target IKEv2 implementers
who need to create implementations that meet both high security
expectations as well as high interoperability between various vendors
and with different versions. Interoperability requires a smooth move
to more secure cipher suites. This may differ from a user point of
view that may deploy and configure IKEv2 with only the safest cipher
suite.
This document does not give any recommendations for the use of
algorithms, it only gives implementation recommendations regarding
implementations. The use of algorithms by a specific user is
dictated by their own security policy requirements, which are outside
the scope of this document.
IKEv1 is out of scope of this document. IKEv1 is deprecated and the
recommendations of this document must not be considered for IKEv1, as
most IKEv1 implementations have been "frozen" and will not be able to
update the list of mandatory-to-implement algorithms.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Algorithm Selection</span>
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Type 1 - IKEv2 Encryption Algorithm Transforms</span>
The algorithms in the table below are negotiated in the Security
Association (SA) payload and used for the Encrypted Payload.
References to the specification defining these algorithms and the
ones in the following subsections are in the IANA registry
[<a href="#ref-IKEV2-IANA">IKEV2-IANA</a>]. Some of these algorithms are Authenticated Encryption
with Associated Data (AEAD) [<a href="./rfc5282" title=""Using Authenticated Encryption Algorithms with the Encrypted Payload of the Internet Key Exchange version 2 (IKEv2) Protocol"">RFC5282</a>]. Algorithms that are not AEAD
MUST be used in conjunction with one of the integrity algorithms in
<a href="#section-2.3">Section 2.3</a>.
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
+------------------------+----------+-------+---------+
| Name | Status | AEAD? | Comment |
+------------------------+----------+-------+---------+
| ENCR_AES_CBC | MUST | No | (*) |
| ENCR_CHACHA20_POLY1305 | SHOULD | Yes | |
| ENCR_AES_GCM_16 | SHOULD | Yes | (*) |
| ENCR_AES_CCM_8 | SHOULD | Yes | (IoT) |
| ENCR_3DES | MAY | No | |
| ENCR_DES | MUST NOT | No | |
| ENCR_NULL | MUST NOT | No | |
+------------------------+----------+-------+---------+
(*) This requirement level is for 128-bit and 256-bit keys.
192-bit keys remain at the MAY level.
(IoT) This requirement is for interoperability with IoT. Only
128-bit keys are at the SHOULD level. 192-bit and 256-bit
remain at the MAY level.
ENCR_AES_CBC is raised from SHOULD+ for 128-bit keys and MAY for
256-bit keys in [<a href="./rfc4307" title=""Cryptographic Algorithms for Use in the Internet Key Exchange Version 2 (IKEv2)"">RFC4307</a>] to MUST. 192-bit keys remain at the MAY
level. ENCR_AES_CBC is the only shared mandatory-to-implement
algorithm with <a href="./rfc4307">RFC 4307</a> and as a result, it is necessary for
interoperability with IKEv2 implementation compatible with <a href="./rfc4307">RFC 4307</a>.
ENCR_CHACHA20_POLY1305 was not ready to be considered at the time of
<a href="./rfc4307">RFC 4307</a>'s publication. It has been recommended by the Crypto Forum
Research Group (CFRG) of the IRTF as an alternative to AES-CBC and
AES-GCM. It is also being standardized for IPsec for the same
reasons. At the time of writing, there were not enough IKEv2
implementations supporting ENCR_CHACHA20_POLY1305 to be able to
introduce it at the SHOULD+ level.
ENCR_AES_GCM_16 was not considered in <a href="./rfc4307">RFC 4307</a>. At the time <a href="./rfc4307">RFC 4307</a>
was written, AES-GCM was not defined in an IETF document. AES-GCM
was defined for ESP in [<a href="./rfc4106" title=""The Use of Galois/Counter Mode (GCM) in IPsec Encapsulating Security Payload (ESP)"">RFC4106</a>] and later for IKEv2 in [<a href="./rfc5282" title=""Using Authenticated Encryption Algorithms with the Encrypted Payload of the Internet Key Exchange version 2 (IKEv2) Protocol"">RFC5282</a>].
The main motivation for adopting AES-GCM for ESP is encryption
performance compared to AES-CBC. This resulted in AES-GCM being
widely implemented for ESP. As the computation load of IKEv2 is
relatively small compared to ESP, many IKEv2 implementations have not
implemented AES-GCM. For this reason, AES-GCM is not promoted to a
greater status than SHOULD. The reason for promotion from MAY to
SHOULD is to promote the slightly more secure AEAD method over the
traditional encrypt+auth method. Its status is expected to be raised
once widely implemented. As the advantage of the shorter (and
weaker) Integrity Check Values (ICVs) is minimal, the 8- and 12-octet
ICVs remain at the MAY level.
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
ENCR_AES_CCM_8 was not considered in <a href="./rfc4307">RFC 4307</a>. This document
considers it as SHOULD be implemented in order to be able to interact
with IoT devices. As this case is not a general use case for non-IoT
VPNs, its status is expected to remain as SHOULD. The 8-octet size
of the ICV is expected to be sufficient for most use cases of IKEv2,
as far less packets are exchanged in those cases, and IoT devices
want to make packets as small as possible. The SHOULD level is for
128-bit keys, 256-bit keys remains at MAY level.
ENCR_3DES has been downgraded from <a href="./rfc4307">RFC 4307</a> MUST- to MAY. All IKEv2
implementations already implement ENCR_AES_CBC, so there is no need
to keep support for the much slower ENCR_3DES. In addition,
ENCR_CHACHA20_POLY1305 provides a more modern alternative to AES.
ENCR_DES can be brute-forced using off-the-shelf hardware. It
provides no meaningful security whatsoever and, therefore, MUST NOT
be implemented.
ENCR_NULL was incorrectly specified as MAY in <a href="./rfc4307">RFC 4307</a>, even when
<a href="./rfc7296#section-5">[RFC7296], Section 5</a> clearly states that it MUST NOT be used. This
was fixed and this document now lists ENCR_NULL as MUST NOT.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Type 2 - IKEv2 Pseudorandom Function Transforms</span>
Transform Type 2 algorithms are pseudorandom functions used to
generate pseudorandom values when needed.
+-------------------+----------+---------+
| Name | Status | Comment |
+-------------------+----------+---------+
| PRF_HMAC_SHA2_256 | MUST | |
| PRF_HMAC_SHA2_512 | SHOULD+ | |
| PRF_HMAC_SHA1 | MUST- | |
| PRF_AES128_XCBC | SHOULD | (IoT) |
| PRF_HMAC_MD5 | MUST NOT | |
+-------------------+----------+---------+
(IoT) This requirement is for interoperability with IoT.
As no SHA2-based transforms were referenced in <a href="./rfc4307">RFC 4307</a>,
PRF_HMAC_SHA2_256 was not mentioned in <a href="./rfc4307">RFC 4307</a>. PRF_HMAC_SHA2_256
MUST be implemented in order to replace SHA1 and PRF_HMAC_SHA1.
PRF_HMAC_SHA2_512 SHOULD be implemented as a future replacement for
PRF_HMAC_SHA2_256 or when stronger security is required.
PRF_HMAC_SHA2_512 is preferred over PRF_HMAC_SHA2_384 as the
additional overhead of PRF_HMAC_SHA2_512 is negligible.
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
PRF_HMAC_SHA1 has been downgraded from MUST in <a href="./rfc4307">RFC 4307</a> to MUST-, as
cryptographic attacks against SHA1 are increasing, resulting in an
industry-wide trend to deprecate its usage.
PRF_AES128_XCBC is only recommended in the scope of IoT, as Internet
of Things deployments tend to prefer AES-based pseudorandom functions
in order to avoid implementing SHA2. For the non-IoT VPN deployment,
it has been downgraded from SHOULD in <a href="./rfc4307">RFC 4307</a> to MAY as it has not
seen wide adoption.
PRF_HMAC_MD5 has been downgraded from MAY in <a href="./rfc4307">RFC 4307</a> to MUST NOT.
Cryptographic attacks against MD5, such as collision attacks
mentioned in [<a href="#ref-TRANSCRIPTION">TRANSCRIPTION</a>], are resulting in an industry-wide trend
to deprecate and remove MD5 (and thus HMAC-MD5) from cryptographic
libraries.
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. Type 3 - IKEv2 Integrity Algorithm Transforms</span>
The algorithms in the table below are negotiated in the SA payload
and used for the Encrypted Payload. References to the specification
defining these algorithms are in the IANA registry. When an AEAD
algorithm (see <a href="#section-2.1">Section 2.1</a>) is proposed, this algorithm transform
type is not in use.
+------------------------+----------+---------+
| Name | Status | Comment |
+------------------------+----------+---------+
| AUTH_HMAC_SHA2_256_128 | MUST | |
| AUTH_HMAC_SHA2_512_256 | SHOULD | |
| AUTH_HMAC_SHA1_96 | MUST- | |
| AUTH_AES_XCBC_96 | SHOULD | (IoT) |
| AUTH_HMAC_MD5_96 | MUST NOT | |
| AUTH_DES_MAC | MUST NOT | |
| AUTH_KPDK_MD5 | MUST NOT | |
+------------------------+----------+---------+
(IoT) This requirement is for interoperability with IoT.
AUTH_HMAC_SHA2_256_128 was not mentioned in <a href="./rfc4307">RFC 4307</a>, as no
SHA2-based transforms were mentioned. AUTH_HMAC_SHA2_256_128 MUST be
implemented in order to replace AUTH_HMAC_SHA1_96.
AUTH_HMAC_SHA2_512_256 SHOULD be implemented as a future replacement
of AUTH_HMAC_SHA2_256_128 or when stronger security is required.
This value has been preferred over AUTH_HMAC_SHA2_384, as the
additional overhead of AUTH_HMAC_SHA2_512 is negligible.
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
AUTH_HMAC_SHA1_96 has been downgraded from MUST in <a href="./rfc4307">RFC 4307</a> to MUST-
as cryptographic attacks against SHA1 are increasing, resulting in an
industry-wide trend to deprecate its usage.
AUTH_AES_XCBC_96 is only recommended in the scope of IoT, as Internet
of Things deployments tend to prefer AES-based pseudorandom functions
in order to avoid implementing SHA2. For the non-IoT VPN deployment,
it has been downgraded from SHOULD in <a href="./rfc4307">RFC 4307</a> to MAY as it has not
been widely adopted.
AUTH_DES_MAC and AUTH_KPDK_MD5 were not mentioned in <a href="./rfc4307">RFC 4307</a>, so
their default statuses were MAY. These have been downgraded to MUST
NOT. AUTH_HMAC_MD5_96 is also demoted to MUST NOT. This is because
there is an industry-wide trend to deprecate DES and MD5. Note also
that MD5 support is being removed from cryptographic libraries in
general because its non-HMAC use is known to be subject to collision
attacks, for example, as mentioned in [<a href="#ref-TRANSCRIPTION">TRANSCRIPTION</a>].
<span class="h3"><a class="selflink" id="section-2.4" href="#section-2.4">2.4</a>. Type 4 - IKEv2 Diffie-Hellman Group Transforms</span>
There are several Modular Exponential (MODP) groups and several
Elliptic Curve Cryptography (ECC) groups that are defined for use in
IKEv2. These groups are defined in both the base document [<a href="./rfc7296" title=""Internet Key Exchange Protocol Version 2 (IKEv2)"">RFC7296</a>]
and in extension documents and are identified by group number. Note
that it is critical to enforce a secure Diffie-Hellman (DH) exchange
as this exchange provides keys for the session. If an attacker can
retrieve one of the private numbers (a or b) and the complementary
public value (g**b or g**a), then the attacker can compute the secret
and the keys used and then decrypt the exchange and IPsec SA created
inside the IKEv2 SA. Such an attack can be performed off-line on a
previously recorded communication, years after the communication
happened. This differs from attacks that need to be executed during
the authentication that must be performed online and in near real
time.
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
+--------+---------------------------------------------+------------+
| Number | Description | Status |
+--------+---------------------------------------------+------------+
| 14 | 2048-bit MODP Group | MUST |
| 19 | 256-bit random ECP group | SHOULD |
| 5 | 1536-bit MODP Group | SHOULD NOT |
| 2 | 1024-bit MODP Group | SHOULD NOT |
| 1 | 768-bit MODP Group | MUST NOT |
| 22 | 1024-bit MODP Group with 160-bit Prime | MUST NOT |
| | Order Subgroup | |
| 23 | 2048-bit MODP Group with 224-bit Prime | SHOULD NOT |
| | Order Subgroup | |
| 24 | 2048-bit MODP Group with 256-bit Prime | SHOULD NOT |
| | Order Subgroup | |
+--------+---------------------------------------------+------------+
Group 14 or the 2048-bit MODP Group is raised from SHOULD+ in
<a href="./rfc4307">RFC 4307</a> to MUST as a replacement for the 1024-bit MODP Group. Group
14 is widely implemented and considered secure.
Group 19 or the 256-bit random ECP group was not specified in
<a href="./rfc4307">RFC 4307</a> as this group was not defined at that time. Group 19 is
widely implemented and considered secure and, therefore, has been
promoted to the SHOULD level.
Group 5 or the 1536-bit MODP Group has been downgraded from MAY in
<a href="./rfc4307">RFC 4307</a> to SHOULD NOT. It was specified earlier, but is now
considered to be vulnerable to being broken within the next few years
by a nation-state-level attack, so its security margin is considered
too narrow.
Group 2 or the 1024-bit MODP Group has been downgraded from MUST- in
<a href="./rfc4307">RFC 4307</a> to SHOULD NOT. It is known to be weak against sufficiently
funded attackers using commercially available mass-computing
resources, so its security margin is considered too narrow. It is
expected in the near future to be downgraded to MUST NOT.
Group 1 or the 768-bit MODP Group was not mentioned in <a href="./rfc4307">RFC 4307</a> and
so its status was MAY. It can be broken within hours using cheap
off-the-shelf hardware. It provides no security whatsoever. It has,
therefore, been downgraded to MUST NOT.
Groups 22, 23, and 24 are MODP groups with Prime Order Subgroups that
are not safe primes. The seeds for these groups have not been
publicly released, resulting in reduced trust in these groups. These
groups were proposed as alternatives for groups 2 and 14 but never
saw wide deployment. It has been shown that group 22 with 1024-bit
MODP is too weak and academia have the resources to generate
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
malicious values at this size. This has resulted in group 22 to be
demoted to MUST NOT. Groups 23 and 24 have been demoted to SHOULD
NOT and are expected to be further downgraded in the near future to
MUST NOT. Since groups 23 and 24 have small subgroups, the checks
specified in the first bullet point of <a href="#section-2.2">Section 2.2</a> of "Additional
Diffie-Hellman Tests for the Internet Key Exchange Protocol Version 2
(IKEv2)" [<a href="./rfc6989" title=""Additional Diffie-Hellman Tests for the Internet Key Exchange Protocol Version 2 (IKEv2)"">RFC6989</a>] MUST be done when these groups are used.
<span class="h3"><a class="selflink" id="section-2.5" href="#section-2.5">2.5</a>. Summary of Changes from <a href="./rfc4307">RFC 4307</a></span>
The following table summarizes the changes from <a href="./rfc4307">RFC 4307</a>.
+---------------------+--------------------------+------------+
| Algorithm | <a href="./rfc4307">RFC 4307</a> | <a href="./rfc8247">RFC 8247</a> |
+---------------------+--------------------------+------------+
| ENCR_3DES | MUST- | MAY |
| ENCR_NULL | MUST NOT (per [<a href="#ref-Err1937" title="RFC 4307">Err1937</a>]) | MUST NOT |
| ENCR_AES_CBC | SHOULD+ | MUST |
| ENCR_AES_CTR | SHOULD | MAY(*) |
| PRF_HMAC_MD5 | MAY | MUST NOT |
| PRF_HMAC_SHA1 | MUST | MUST- |
| PRF_AES128_XCBC | SHOULD+ | SHOULD |
| AUTH_HMAC_MD5_96 | MAY | MUST NOT |
| AUTH_HMAC_SHA1_96 | MUST | MUST- |
| AUTH_AES_XCBC_96 | SHOULD+ | SHOULD |
| Group 2 (1024-bit) | MUST- | SHOULD NOT |
| Group 14 (2048-bit) | SHOULD+ | MUST |
+---------------------+--------------------------+------------+
(*) This algorithm is not mentioned in the above sections, so it
defaults to MAY.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. IKEv2 Authentication</span>
IKEv2 authentication may involve a signatures verification.
Signatures may be used to validate a certificate or to check the
signature of the AUTH value. Cryptographic recommendations regarding
certificate validation are out of scope of this document. What is
mandatory to implement is provided by the PKIX community. This
document is mostly concerned with signature verification and
generation for the authentication.
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. IKEv2 Authentication Method</span>
+--------+---------------------------------------+------------+
| Number | Description | Status |
+--------+---------------------------------------+------------+
| 1 | RSA Digital Signature | MUST |
| 2 | Shared Key Message Integrity Code | MUST |
| 3 | DSS Digital Signature | SHOULD NOT |
| 9 | ECDSA with SHA-256 on the P-256 curve | SHOULD |
| 10 | ECDSA with SHA-384 on the P-384 curve | SHOULD |
| 11 | ECDSA with SHA-512 on the P-521 curve | SHOULD |
| 14 | Digital Signature | SHOULD |
+--------+---------------------------------------+------------+
RSA Digital Signature is widely deployed and, therefore, kept for
interoperability. It is expected to be downgraded in the future as
its signatures are based on the older RSASSA-PKCS1-v1.5, which is no
longer recommended. RSA authentication, as well as other specific
authentication methods, are expected to be replaced with the generic
Digital Signature method of [<a href="./rfc7427" title=""Signature Authentication in the Internet Key Exchange Version 2 (IKEv2)"">RFC7427</a>].
Shared Key Message Integrity Code is widely deployed and mandatory to
implement in the IKEv2 in <a href="./rfc7296">RFC 7296</a>. The status remains MUST.
"DSS Digital Signature" (IANA value 3) signatures are bound to SHA-1
and have the same level of security as 1024-bit RSA. They are
currently at SHOULD NOT and are expected to be downgraded to MUST NOT
in the future.
Authentication methods that are based on the Elliptic Curve Digital
Signature Algorithm (ECDSA) are also expected to be downgraded as
these do not provide hash function agility. Instead, ECDSA (like
RSA) is expected to be performed using the generic Digital Signature
method. Its status is SHOULD.
Digital Signature [<a href="./rfc7427" title=""Signature Authentication in the Internet Key Exchange Version 2 (IKEv2)"">RFC7427</a>] is expected to be promoted as it provides
hash function, signature format, and algorithm agility. Its current
status is SHOULD.
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
<span class="h4"><a class="selflink" id="section-3.1.1" href="#section-3.1.1">3.1.1</a>. Recommendations for RSA Key Length</span>
+-------------------------------------------+------------+
| Description | Status |
+-------------------------------------------+------------+
| RSA with key length 2048 | MUST |
| RSA with key length 3072 and 4096 | SHOULD |
| RSA with key length between 2049 and 4095 | MAY |
| RSA with key length smaller than 2048 | SHOULD NOT |
+-------------------------------------------+------------+
IKEv2 [<a href="./rfc7296" title=""Internet Key Exchange Protocol Version 2 (IKEv2)"">RFC7296</a>] mandates support for the RSA keys of the bit size
1024 or 2048, but key sizes less than 2048 are updated to SHOULD NOT
as there is an industry-wide trend to deprecate key lengths less than
2048 bits. Since these signatures only have value in real time and
need no future protection, smaller keys were kept at SHOULD NOT
instead of MUST NOT.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Digital Signature Recommendations</span>
When a Digital Signature authentication method is implemented, the
following recommendations are applied for hash functions:
+--------+-------------+----------+---------+
| Number | Description | Status | Comment |
+--------+-------------+----------+---------+
| 1 | SHA1 | MUST NOT | |
| 2 | SHA2-256 | MUST | |
| 3 | SHA2-384 | MAY | |
| 4 | SHA2-512 | SHOULD | |
+--------+-------------+----------+---------+
When the Digital Signature authentication method is used with RSA
signature algorithm, RSASSA-PSS MUST be supported and RSASSA-
PKCS1-v1.5 MAY be supported.
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
The following table lists recommendations for authentication methods
in [<a href="./rfc7427" title=""Signature Authentication in the Internet Key Exchange Version 2 (IKEv2)"">RFC7427</a>] notation. These recommendations are applied only if the
Digital Signature authentication method is implemented.
+------------------------------------+----------+---------+
| Description | Status | Comment |
+------------------------------------+----------+---------+
| RSASSA-PSS with SHA-256 | MUST | |
| ecdsa-with-sha256 | SHOULD | |
| sha1WithRSAEncryption | MUST NOT | |
| dsa-with-sha1 | MUST NOT | |
| ecdsa-with-sha1 | MUST NOT | |
| RSASSA-PSS with Empty Parameters | MUST NOT | (*) |
| RSASSA-PSS with Default Parameters | MUST NOT | (*) |
+------------------------------------+----------+---------+
(*) Empty or Default parameters means it is using SHA1, which is at
the MUST NOT level.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Algorithms for Internet of Things</span>
Some algorithms in this document are marked for use with the Internet
of Things (IoT). There are several reasons why IoT devices prefer a
different set of algorithms from regular IKEv2 clients. IoT devices
are usually very constrained, meaning that the memory size and CPU
power is so limited that these clients only have resources to
implement and run one set of algorithms. For example, instead of
implementing AES and SHA, these devices typically use AES_XCBC as an
integrity algorithm so SHA does not need to be implemented.
For example, IEEE Std 802.15.4 [<a href="#ref-IEEE-802-15-4">IEEE-802-15-4</a>] devices have a
mandatory-to-implement link-level security using AES-CCM with 128-bit
keys. The "IEEE Recommended Practice for Transport of Key Management
Protocol (KMP) Datagrams" [<a href="#ref-IEEE-802-15-9">IEEE-802-15-9</a>] already provides a way to
use Minimal IKEv2 [<a href="./rfc7815" title=""Minimal Internet Key Exchange Version 2 (IKEv2) Initiator Implementation"">RFC7815</a>] over the 802.15.4 layer to provide link
keys for the 802.15.4 layer.
These devices might want to use AES-CCM as their IKEv2 algorithm, so
they can reuse the hardware implementing it. They cannot use the
AES-CBC algorithm, as the hardware quite often does not include
support for the AES decryption needed to support the CBC mode. So
despite the AES-CCM algorithm requiring AEAD [<a href="./rfc5282" title=""Using Authenticated Encryption Algorithms with the Encrypted Payload of the Internet Key Exchange version 2 (IKEv2) Protocol"">RFC5282</a>] support, the
benefit of reusing the crypto hardware makes AES-CCM the preferred
algorithm.
Another important aspect of IoT devices is that their transfer rates
are usually quite low (in the order of tens of kbit/s), and each bit
they transmit has an energy consumption cost associated with it and
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
shortens their battery life. Therefore, shorter packets are
preferred. This is the reason for recommending the 8-octet ICV over
the 16-octet ICV.
Because different IoT devices will have different constraints, this
document cannot specify the one mandatory profile for IoT. Instead,
this document points out commonly used algorithms with IoT devices.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Security Considerations</span>
The security of cryptographic-based systems depends on both the
strength of the cryptographic algorithms chosen and the strength of
the keys used with those algorithms. The security also depends on
the engineering of the protocol used by the system to ensure that
there are no non-cryptographic ways to bypass the security of the
overall system.
The Diffie-Hellman Group parameter is the most important one to
choose conservatively. Any party capturing all IKE and ESP traffic
that (even years later) can break the selected DH group in IKE, can
gain access to the symmetric keys used to encrypt all the ESP
traffic. Therefore, these groups must be chosen very conservatively.
However, specifying an extremely large DH group also puts a
considerable load on the device, especially when this is a large VPN
gateway or an IoT-constrained device.
This document concerns itself with the selection of cryptographic
algorithms for the use of IKEv2, specifically with the selection of
"mandatory-to-implement" algorithms. The algorithms identified in
this document as "MUST implement" or "SHOULD implement" are not known
to be broken at the current time, and cryptographic research so far
leads us to believe that they will likely remain secure into the
foreseeable future. However, this isn't necessarily forever and it
is expected that new revisions of this document will be issued from
time to time to reflect the current best practice in this area.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. IANA Considerations</span>
This document renames some of the names in the "Transform Type 1 -
Encryption Algorithm Transform IDs" registry of the "Internet Key
Exchange Version 2 (IKEv2) Parameters". All the other names have
ENCR_ prefix except 3, and all other entries use names in the format
of uppercase words separated with underscores except 6. This
document changes those names to match others.
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
Per this document, IANA has renamed the following entries for the
AES-GCM cipher [<a href="./rfc4106" title=""The Use of Galois/Counter Mode (GCM) in IPsec Encapsulating Security Payload (ESP)"">RFC4106</a>] and the Camellia cipher [<a href="./rfc5529" title=""Modes of Operation for Camellia for Use with IPsec"">RFC5529</a>]:
+---------------------------------------+----------------------+
| Old name | New name |
+---------------------------------------+----------------------+
| AES-GCM with a 8 octet ICV | ENCR_AES_GCM_8 |
| AES-GCM with a 12 octet ICV | ENCR_AES_GCM_12 |
| AES-GCM with a 16 octet ICV | ENCR_AES_GCM_16 |
| ENCR_CAMELLIA_CCM with an 8-octet ICV | ENCR_CAMELLIA_CCM_8 |
| ENCR_CAMELLIA_CCM with a 12-octet ICV | ENCR_CAMELLIA_CCM_12 |
| ENCR_CAMELLIA_CCM with a 16-octet ICV | ENCR_CAMELLIA_CCM_16 |
+---------------------------------------+----------------------+
In addition, IANA has added this RFC as a reference to both the ESP
Reference and IKEv2 Reference columns for ENCR_AES_GCM entries, while
keeping the existing references there. Also, IANA has added this RFC
as a reference to the ESP Reference column for ENCR_CAMELLIA_CCM
entries, while keeping the existing reference there.
The registry entries currently are:
Number Name ESP Reference IKEv2 Reference
...
18 ENCR_AES_GCM_8 [<a href="./rfc4106" title=""The Use of Galois/Counter Mode (GCM) in IPsec Encapsulating Security Payload (ESP)"">RFC4106</a>][RFC8247] [<a href="./rfc5282" title=""Using Authenticated Encryption Algorithms with the Encrypted Payload of the Internet Key Exchange version 2 (IKEv2) Protocol"">RFC5282</a>][RFC8247]
19 ENCR_AES_GCM_12 [<a href="./rfc4106" title=""The Use of Galois/Counter Mode (GCM) in IPsec Encapsulating Security Payload (ESP)"">RFC4106</a>][RFC8247] [<a href="./rfc5282" title=""Using Authenticated Encryption Algorithms with the Encrypted Payload of the Internet Key Exchange version 2 (IKEv2) Protocol"">RFC5282</a>][RFC8247]
20 ENCR_AES_GCM_16 [<a href="./rfc4106" title=""The Use of Galois/Counter Mode (GCM) in IPsec Encapsulating Security Payload (ESP)"">RFC4106</a>][RFC8247] [<a href="./rfc5282" title=""Using Authenticated Encryption Algorithms with the Encrypted Payload of the Internet Key Exchange version 2 (IKEv2) Protocol"">RFC5282</a>][RFC8247]
...
25 ENCR_CAMELLIA_CCM_8 [<a href="./rfc5529" title=""Modes of Operation for Camellia for Use with IPsec"">RFC5529</a>][RFC8247] -
26 ENCR_CAMELLIA_CCM_12 [<a href="./rfc5529" title=""Modes of Operation for Camellia for Use with IPsec"">RFC5529</a>][RFC8247] -
27 ENCR_CAMELLIA_CCM_16 [<a href="./rfc5529" title=""Modes of Operation for Camellia for Use with IPsec"">RFC5529</a>][RFC8247] -
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. References</span>
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Normative References</span>
[<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-RFC4106">RFC4106</a>] Viega, J. and D. McGrew, "The Use of Galois/Counter Mode
(GCM) in IPsec Encapsulating Security Payload (ESP)",
<a href="./rfc4106">RFC 4106</a>, DOI 10.17487/RFC4106, June 2005,
<<a href="https://www.rfc-editor.org/info/rfc4106">https://www.rfc-editor.org/info/rfc4106</a>>.
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
[<a id="ref-RFC4307">RFC4307</a>] Schiller, J., "Cryptographic Algorithms for Use in the
Internet Key Exchange Version 2 (IKEv2)", <a href="./rfc4307">RFC 4307</a>,
DOI 10.17487/RFC4307, December 2005,
<<a href="https://www.rfc-editor.org/info/rfc4307">https://www.rfc-editor.org/info/rfc4307</a>>.
[<a id="ref-RFC5282">RFC5282</a>] Black, D. and D. McGrew, "Using Authenticated Encryption
Algorithms with the Encrypted Payload of the Internet Key
Exchange version 2 (IKEv2) Protocol", <a href="./rfc5282">RFC 5282</a>,
DOI 10.17487/RFC5282, August 2008,
<<a href="https://www.rfc-editor.org/info/rfc5282">https://www.rfc-editor.org/info/rfc5282</a>>.
[<a id="ref-RFC7296">RFC7296</a>] Kaufman, C., Hoffman, P., Nir, Y., Eronen, P., and T.
Kivinen, "Internet Key Exchange Protocol Version 2
(IKEv2)", STD 79, <a href="./rfc7296">RFC 7296</a>, DOI 10.17487/RFC7296, October
2014, <<a href="https://www.rfc-editor.org/info/rfc7296">https://www.rfc-editor.org/info/rfc7296</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>>.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Informative References</span>
[<a id="ref-Err1937">Err1937</a>] RFC Errata, Erratum ID 1937, <a href="./rfc4307">RFC 4307</a>,
<<a href="https://www.rfc-editor.org/errata/eid1937">https://www.rfc-editor.org/errata/eid1937</a>>.
[<a id="ref-IEEE-802-15-4">IEEE-802-15-4</a>]
IEEE, "IEEE Standard for Low-Rate Wireless Personal Area
Networks (WPANs)", IEEE Standard 802.15.4,
DOI 10.1109/IEEESTD.2016.7460875, 2015,
<<a href="http://ieeexplore.ieee.org/document/7460875/">http://ieeexplore.ieee.org/document/7460875/</a>>.
[<a id="ref-IEEE-802-15-9">IEEE-802-15-9</a>]
IEEE, "IEEE Recommended Practice for Transport of Key
Management Protocol (KMP) Datagrams", IEEE Standard
802.15.9, DOI 10.1109/IEEESTD.2016.7544442, 2016,
<<a href="http://ieeexplore.ieee.org/document/7544442/">http://ieeexplore.ieee.org/document/7544442/</a>>.
[<a id="ref-IKEV2-IANA">IKEV2-IANA</a>]
IANA, "Internet Key Exchange Version 2 (IKEv2)
Parameters",
<<a href="http://www.iana.org/assignments/ikev2-parameters">http://www.iana.org/assignments/ikev2-parameters</a>>.
[<a id="ref-RFC5529">RFC5529</a>] Kato, A., Kanda, M., and S. Kanno, "Modes of Operation for
Camellia for Use with IPsec", <a href="./rfc5529">RFC 5529</a>,
DOI 10.17487/RFC5529, April 2009,
<<a href="https://www.rfc-editor.org/info/rfc5529">https://www.rfc-editor.org/info/rfc5529</a>>.
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
[<a id="ref-RFC6989">RFC6989</a>] Sheffer, Y. and S. Fluhrer, "Additional Diffie-Hellman
Tests for the Internet Key Exchange Protocol Version 2
(IKEv2)", <a href="./rfc6989">RFC 6989</a>, DOI 10.17487/RFC6989, July 2013,
<<a href="https://www.rfc-editor.org/info/rfc6989">https://www.rfc-editor.org/info/rfc6989</a>>.
[<a id="ref-RFC7427">RFC7427</a>] Kivinen, T. and J. Snyder, "Signature Authentication in
the Internet Key Exchange Version 2 (IKEv2)", <a href="./rfc7427">RFC 7427</a>,
DOI 10.17487/RFC7427, January 2015,
<<a href="https://www.rfc-editor.org/info/rfc7427">https://www.rfc-editor.org/info/rfc7427</a>>.
[<a id="ref-RFC7815">RFC7815</a>] Kivinen, T., "Minimal Internet Key Exchange Version 2
(IKEv2) Initiator Implementation", <a href="./rfc7815">RFC 7815</a>,
DOI 10.17487/RFC7815, March 2016,
<<a href="https://www.rfc-editor.org/info/rfc7815">https://www.rfc-editor.org/info/rfc7815</a>>.
[<a id="ref-TRANSCRIPTION">TRANSCRIPTION</a>]
Bhargavan, K. and G. Leurent, "Transcript Collision
Attacks: Breaking Authentication in TLS, IKE, and SSH",
Network and Distributed System Security Symposium (NDSS),
DOI 10.14722/ndss.2016.23418, Feb 2016,
<<a href="https://hal.inria.fr/hal-01244855/">https://hal.inria.fr/hal-01244855/</a>>.
Acknowledgements
<a href="./rfc4307">RFC 4307</a> was authored by Jeffrey I. Schiller of the Massachusetts
Institute of Technology (MIT). Much of the original text has been
copied verbatim.
We would like to thank Paul Hoffman, Yaron Sheffer, John Mattsson,
Tommy Pauly, Eric Rescorla, and Pete Resnick for their valuable
feedback and reviews.
<span class="grey">Nir, 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="./rfc8247">RFC 8247</a> IKEv2 Cryptographic Algorithms September 2017</span>
Authors' Addresses
Yoav Nir
Dell EMC
9 Andrei Sakharov Street
Haifa 3190500
Israel
Email: ynir.ietf@gmail.com
Tero Kivinen
Email: kivinen@iki.fi
Paul Wouters
Red Hat
Email: pwouters@redhat.com
Daniel Migault
Ericsson
8275 Trans Canada Route
Saint-Laurent, QC H4S 0B6
Canada
Phone: +1 514-452-2160
Email: daniel.migault@ericsson.com
Nir, et al. Standards Track [Page 19]
</pre>
|