1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
|
<pre>Internet Engineering Task Force (IETF) P. Saint-Andre
Request for Comments: 7613 &yet
Obsoletes: <a href="./rfc4013">4013</a> A. Melnikov
Category: Standards Track Isode Ltd
ISSN: 2070-1721 August 2015
<span class="h1">Preparation, Enforcement, and Comparison of Internationalized Strings</span>
<span class="h1">Representing Usernames and Passwords</span>
Abstract
This document describes updated methods for handling Unicode strings
representing usernames and passwords. The previous approach was
known as SASLprep (<a href="./rfc4013">RFC 4013</a>) and was based on stringprep (<a href="./rfc3454">RFC 3454</a>).
The methods specified in this document provide a more sustainable
approach to the handling of internationalized usernames and
passwords. The preparation, enforcement, and comparison of
internationalized strings (PRECIS) framework, <a href="./rfc7564">RFC 7564</a>, obsoletes <a href="./rfc3454">RFC</a>
<a href="./rfc3454">3454</a>, and this document obsoletes <a href="./rfc4013">RFC 4013</a>.
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="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7613">http://www.rfc-editor.org/info/rfc7613</a>.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
Copyright Notice
Copyright (c) 2015 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-4">4</a>
<a href="#section-2">2</a>. Terminology .....................................................<a href="#page-5">5</a>
<a href="#section-3">3</a>. Usernames .......................................................<a href="#page-6">6</a>
<a href="#section-3.1">3.1</a>. Definition .................................................<a href="#page-6">6</a>
<a href="#section-3.2">3.2</a>. UsernameCaseMapped Profile .................................<a href="#page-7">7</a>
<a href="#section-3.2.1">3.2.1</a>. Preparation .........................................<a href="#page-7">7</a>
<a href="#section-3.2.2">3.2.2</a>. Enforcement .........................................<a href="#page-7">7</a>
<a href="#section-3.2.3">3.2.3</a>. Comparison ..........................................<a href="#page-8">8</a>
<a href="#section-3.3">3.3</a>. UsernameCasePreserved Profile ..............................<a href="#page-8">8</a>
<a href="#section-3.3.1">3.3.1</a>. Preparation .........................................<a href="#page-8">8</a>
<a href="#section-3.3.2">3.3.2</a>. Enforcement .........................................<a href="#page-8">8</a>
<a href="#section-3.3.3">3.3.3</a>. Comparison ..........................................<a href="#page-9">9</a>
<a href="#section-3.4">3.4</a>. Case Mapping vs. Case Preservation .........................<a href="#page-9">9</a>
<a href="#section-3.5">3.5</a>. Application-Layer Constructs ..............................<a href="#page-10">10</a>
<a href="#section-3.6">3.6</a>. Examples ..................................................<a href="#page-11">11</a>
<a href="#section-4">4</a>. Passwords ......................................................<a href="#page-13">13</a>
<a href="#section-4.1">4.1</a>. Definition ................................................<a href="#page-13">13</a>
<a href="#section-4.2">4.2</a>. OpaqueString Profile ......................................<a href="#page-14">14</a>
<a href="#section-4.2.1">4.2.1</a>. Preparation ........................................<a href="#page-14">14</a>
<a href="#section-4.2.2">4.2.2</a>. Enforcement ........................................<a href="#page-14">14</a>
<a href="#section-4.2.3">4.2.3</a>. Comparison .........................................<a href="#page-15">15</a>
<a href="#section-4.3">4.3</a>. Examples ..................................................<a href="#page-15">15</a>
<a href="#section-5">5</a>. Use in Application Protocols ...................................<a href="#page-16">16</a>
<a href="#section-6">6</a>. Migration ......................................................<a href="#page-16">16</a>
<a href="#section-6.1">6.1</a>. Usernames .................................................<a href="#page-17">17</a>
<a href="#section-6.2">6.2</a>. Passwords .................................................<a href="#page-18">18</a>
<a href="#section-7">7</a>. IANA Considerations ............................................<a href="#page-19">19</a>
<a href="#section-7.1">7.1</a>. UsernameCaseMapped Profile ................................<a href="#page-19">19</a>
<a href="#section-7.2">7.2</a>. UsernameCasePreserved Profile .............................<a href="#page-20">20</a>
<a href="#section-7.3">7.3</a>. OpaqueString Profile ......................................<a href="#page-20">20</a>
<a href="#section-7.4">7.4</a>. Stringprep Profile ........................................<a href="#page-21">21</a>
<a href="#section-8">8</a>. Security Considerations ........................................<a href="#page-21">21</a>
<a href="#section-8.1">8.1</a>. Password/Passphrase Strength ..............................<a href="#page-21">21</a>
<a href="#section-8.2">8.2</a>. Identifier Comparison .....................................<a href="#page-21">21</a>
<a href="#section-8.3">8.3</a>. Reuse of PRECIS ...........................................<a href="#page-21">21</a>
<a href="#section-8.4">8.4</a>. Reuse of Unicode ..........................................<a href="#page-22">22</a>
<a href="#section-9">9</a>. References .....................................................<a href="#page-22">22</a>
<a href="#section-9.1">9.1</a>. Normative References ......................................<a href="#page-22">22</a>
<a href="#section-9.2">9.2</a>. Informative References ....................................<a href="#page-23">23</a>
<a href="#appendix-A">Appendix A</a>. Differences from <a href="./rfc4013">RFC 4013</a> .............................<a href="#page-26">26</a>
Acknowledgements ..................................................<a href="#page-27">27</a>
Authors' Addresses ................................................<a href="#page-27">27</a>
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
Usernames and passwords are widely used for authentication and
authorization on the Internet, either directly when provided in
plaintext (as in the PLAIN Simple Authentication and Security Layer
(SASL) mechanism [<a href="./rfc4616" title=""The PLAIN Simple Authentication and Security Layer (SASL) Mechanism"">RFC4616</a>] and the HTTP Basic scheme
[<a href="#ref-HTTP-BASIC-AUTH">HTTP-BASIC-AUTH</a>]) or indirectly when provided as the input to a
cryptographic algorithm such as a hash function (as in the Salted
Challenge Response Authentication Mechanism (SCRAM) SASL mechanism
[<a href="./rfc5802" title=""Salted Challenge Response Authentication Mechanism (SCRAM) SASL and GSS-API Mechanisms"">RFC5802</a>] and the HTTP Digest scheme [<a href="#ref-HTTP-DIGEST-AUTH">HTTP-DIGEST-AUTH</a>]).
To increase the likelihood that the input and comparison of usernames
and passwords will work in ways that make sense for typical users
throughout the world, this document defines rules for preparing,
enforcing, and comparing internationalized strings that represent
usernames and passwords. Such strings consist of characters from the
Unicode character set [<a href="#ref-Unicode" title=""The Unicode Standard"">Unicode</a>], with special attention to characters
outside the ASCII range [<a href="./rfc20" title=""ASCII format for network interchange"">RFC20</a>]. The rules for handling such strings
are specified through profiles of the string classes defined in the
preparation, enforcement, and comparison of internationalized strings
(PRECIS) framework specification [<a href="./rfc7564" title=""PRECIS Framework: Preparation, Enforcement, and Comparison of Internationalized Strings in Application Protocols"">RFC7564</a>].
Profiles of the PRECIS framework enable software to handle Unicode
characters outside the ASCII range in an automated way, so that such
characters are treated carefully and consistently in application
protocols. In large measure, these profiles are designed to protect
application developers from the potentially negative consequences of
supporting the full range of Unicode characters. For instance, in
almost all application protocols it would be dangerous to treat the
Unicode character SUPERSCRIPT ONE (U+00B9) as equivalent to DIGIT ONE
(U+0031), because that would result in false positives during
comparison, authentication, and authorization (e.g., an attacker
could easy spoof an account "user1@example.com").
Whereas a naive use of Unicode would make such attacks trivially
easy, the PRECIS profile defined here for usernames generally
protects applications from inadvertently causing such problems.
(Similar considerations apply to passwords, although here it is
desirable to support a wider range of characters so as to maximize
entropy for purposes of authentication.)
The methods defined here might be applicable wherever usernames or
passwords are used. However, the methods are not intended for use in
preparing strings that are not usernames (e.g., Lightweight Directory
Access Protocol (LDAP) distinguished names), nor in cases where
identifiers or secrets are not strings (e.g., keys and certificates)
or require specialized handling.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
This document obsoletes <a href="./rfc4013">RFC 4013</a> (the SASLprep profile of stringprep
[<a href="./rfc3454" title=""Preparation of Internationalized Strings ("">RFC3454</a>]) but can be used by technologies other than SASL [<a href="./rfc4422" title=""Simple Authentication and Security Layer (SASL)"">RFC4422</a>],
such as HTTP authentication as specified in [<a href="#ref-HTTP-BASIC-AUTH">HTTP-BASIC-AUTH</a>] and
[<a href="#ref-HTTP-DIGEST-AUTH">HTTP-DIGEST-AUTH</a>].
This document does not modify the handling of internationalized
strings in usernames and passwords as prescribed by existing
application protocols that use SASLprep. If the community that uses
such an application protocol wishes to modernize its handling of
internationalized strings to use PRECIS instead of stringprep, it
needs to explicitly update the existing application protocol
definition (one example is [<a href="#ref-XMPP-ADDR">XMPP-ADDR</a>], which is intended to obsolete
[<a href="./rfc6122" title=""Extensible Messaging and Presence Protocol (XMPP): Address Format"">RFC6122</a>]). Non-coordinated updates to protocol implementations are
discouraged because they can have a negative impact on
interoperability and security.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Terminology</span>
Many important terms used in this document are defined in [<a href="./rfc5890" title=""Internationalized Domain Names for Applications (IDNA): Definitions and Document Framework"">RFC5890</a>],
[<a href="./rfc6365" title=""Terminology Used in Internationalization in the IETF"">RFC6365</a>], [<a href="./rfc7564" title=""PRECIS Framework: Preparation, Enforcement, and Comparison of Internationalized Strings in Application Protocols"">RFC7564</a>], and [<a href="#ref-Unicode" title=""The Unicode Standard"">Unicode</a>]. The term "non-ASCII space"
refers to any Unicode code point having a Unicode general category of
"Zs", with the exception of U+0020 (here called "ASCII space").
As used here, the term "password" is not literally limited to a word;
i.e., a password could be a passphrase consisting of more than one
word, perhaps separated by spaces, punctuation, or other
non-alphanumeric characters.
Some SASL mechanisms (e.g., CRAM-MD5, DIGEST-MD5, and SCRAM) specify
that the authentication identity used in the context of such
mechanisms is a "simple user name" (see <a href="./rfc4422#section-2">Section 2 of [RFC4422]</a> as
well as [<a href="./rfc4013" title=""SASLprep: Stringprep Profile for User Names and Passwords"">RFC4013</a>]). Various application technologies also assume
that the identity of a user or account takes the form of a username
(e.g., authentication for the Hypertext Transfer Protocol as
specified in [<a href="#ref-HTTP-BASIC-AUTH">HTTP-BASIC-AUTH</a>] and [<a href="#ref-HTTP-DIGEST-AUTH">HTTP-DIGEST-AUTH</a>]), whether or
not they use SASL. Note well that the exact form of a username in
any particular SASL mechanism or application technology is a matter
for implementation and deployment, and that a username does not
necessarily map to any particular application identifier (such as the
localpart of an email address).
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="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Usernames</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Definition</span>
This document specifies that a username is a string of Unicode code
points [<a href="#ref-Unicode" title=""The Unicode Standard"">Unicode</a>], encoded using UTF-8 [<a href="./rfc3629" title=""UTF-8, a transformation format of ISO 10646"">RFC3629</a>], and structured as an
ordered sequence of "userparts". A userpart is allowed to contain
only code points that are in turn allowed by the PRECIS
IdentifierClass defined in <a href="./rfc7564#section-4.2">Section 4.2 of [RFC7564]</a>, and thus
consists almost exclusively of letters and digits. A username can
consist of a single userpart or a space-separated sequence of
userparts.
The syntax for a username is defined as follows, using the Augmented
Backus-Naur Form (ABNF) [<a href="./rfc5234" title=""Augmented BNF for Syntax Specifications: ABNF"">RFC5234</a>].
username = userpart *(1*SP userpart)
userpart = 1*(idbyte)
;
; an "idbyte" is a byte used to represent a
; UTF-8 encoded Unicode code point that can be
; contained in a string that conforms to the
; PRECIS IdentifierClass
;
All code points and blocks not explicitly allowed in the PRECIS
IdentifierClass are disallowed; this includes private use characters,
surrogate code points, and the other code points and blocks that were
defined as "Prohibited Output" in [<a href="./rfc4013" title=""SASLprep: Stringprep Profile for User Names and Passwords"">RFC4013</a>]. In addition, common
constructions such as "user@example.com" (e.g., the Network Access
Identifier from [<a href="./rfc7542" title=""The Network Access Identifier"">RFC7542</a>]) are allowed as usernames under this
specification, as they were under [<a href="./rfc4013" title=""SASLprep: Stringprep Profile for User Names and Passwords"">RFC4013</a>].
Implementation Note: The username construct defined in this
document does not necessarily match what all deployed applications
might refer to as a "username" or "userid" but instead provides a
relatively safe subset of Unicode characters that can be used in
existing SASL mechanisms and in application protocols that use
SASL, and even in most application protocols that do not currently
use SASL.
A username MUST NOT be zero bytes in length. This rule is to be
enforced after any normalization and mapping of code points.
In protocols that provide usernames as input to a cryptographic
algorithm such as a hash function, the client will need to perform
enforcement of the rules for the UsernameCaseMapped or
UsernameCasePreserved profile before applying the algorithm.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
This specification defines two profiles for usernames: one that
performs case mapping and one that performs case preservation (see
further discussion under <a href="#section-3.4">Section 3.4</a>).
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. UsernameCaseMapped Profile</span>
The definition of the UsernameCaseMapped profile of the
IdentifierClass is provided in the following sections, including
detailed information about preparation, enforcement, and comparison
(for details on the distinction between these actions, refer to
[<a href="./rfc7564" title=""PRECIS Framework: Preparation, Enforcement, and Comparison of Internationalized Strings in Application Protocols"">RFC7564</a>]).
<span class="h4"><a class="selflink" id="section-3.2.1" href="#section-3.2.1">3.2.1</a>. Preparation</span>
An entity that prepares a string according to this profile MUST first
map fullwidth and halfwidth characters to their decomposition
mappings (see Unicode Standard Annex #11 [<a href="#ref-UAX11" title=""East Asian Width"">UAX11</a>]). This is necessary
because the PRECIS "HasCompat" category specified in <a href="./rfc7564#section-9.17">Section 9.17 of
[RFC7564]</a> would otherwise forbid fullwidth and halfwidth characters.
After applying this width-mapping rule, the entity then MUST ensure
that the string consists only of Unicode code points that conform to
the PRECIS IdentifierClass defined in <a href="./rfc7564#section-4.2">Section 4.2 of [RFC7564]</a>. In
addition, the entity then MUST encode the string as UTF-8 [<a href="./rfc3629" title=""UTF-8, a transformation format of ISO 10646"">RFC3629</a>].
<span class="h4"><a class="selflink" id="section-3.2.2" href="#section-3.2.2">3.2.2</a>. Enforcement</span>
An entity that performs enforcement according to this profile MUST
prepare a string as described in <a href="#section-3.2.1">Section 3.2.1</a> and MUST also apply
the rules specified below for the UsernameCaseMapped profile (these
rules MUST be applied in the order shown):
1. Width-Mapping Rule: Applied as part of preparation (see above).
2. Additional Mapping Rule: There is no additional mapping rule.
3. Case-Mapping Rule: Uppercase and titlecase characters MUST be
mapped to their lowercase equivalents, preferably using Unicode
Default Case Folding as defined in the Unicode Standard [<a href="#ref-Unicode" title=""The Unicode Standard"">Unicode</a>]
(at the time of this writing, the algorithm is specified in
Chapter 3 of [<a href="#ref-Unicode7.0">Unicode7.0</a>], but the chapter number might change in
a future version of the Unicode Standard); see further discussion
in <a href="#section-3.4">Section 3.4</a>.
4. Normalization Rule: Unicode Normalization Form C (NFC) MUST be
applied to all characters.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
5. Directionality Rule: Applications MUST apply the "Bidi Rule"
defined in [<a href="./rfc5893" title=""Right-to-Left Scripts for Internationalized Domain Names for Applications (IDNA)"">RFC5893</a>] to strings that contain right-to-left
characters (i.e., each of the six conditions of the Bidi Rule
must be satisfied).
<span class="h4"><a class="selflink" id="section-3.2.3" href="#section-3.2.3">3.2.3</a>. Comparison</span>
An entity that performs comparison of two strings according to this
profile MUST prepare each string as specified in <a href="#section-3.2.1">Section 3.2.1</a> and
then enforce the rules specified in <a href="#section-3.2.2">Section 3.2.2</a>. The two strings
are to be considered equivalent if they are an exact octet-for-octet
match (sometimes called "bit-string identity").
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. UsernameCasePreserved Profile</span>
The definition of the UsernameCasePreserved profile of the
IdentifierClass is provided in the following sections, including
detailed information about preparation, enforcement, and comparison
(for details on the distinction between these actions, refer to
[<a href="./rfc7564" title=""PRECIS Framework: Preparation, Enforcement, and Comparison of Internationalized Strings in Application Protocols"">RFC7564</a>]).
<span class="h4"><a class="selflink" id="section-3.3.1" href="#section-3.3.1">3.3.1</a>. Preparation</span>
An entity that prepares a string according to this profile MUST first
map fullwidth and halfwidth characters to their decomposition
mappings (see Unicode Standard Annex #11 [<a href="#ref-UAX11" title=""East Asian Width"">UAX11</a>]). This is necessary
because the PRECIS "HasCompat" category specified in <a href="./rfc7564#section-9.17">Section 9.17 of
[RFC7564]</a> would otherwise forbid fullwidth and halfwidth characters.
After applying this width-mapping rule, the entity then MUST ensure
that the string consists only of Unicode code points that conform to
the PRECIS IdentifierClass defined in <a href="./rfc7564#section-4.2">Section 4.2 of [RFC7564]</a>. In
addition, the entity then MUST encode the string as UTF-8 [<a href="./rfc3629" title=""UTF-8, a transformation format of ISO 10646"">RFC3629</a>].
<span class="h4"><a class="selflink" id="section-3.3.2" href="#section-3.3.2">3.3.2</a>. Enforcement</span>
An entity that performs enforcement according to this profile MUST
prepare a string as described in <a href="#section-3.3.1">Section 3.3.1</a> and MUST also apply
the rules specified below for the UsernameCasePreserved profile
(these rules MUST be applied in the order shown):
1. Width-Mapping Rule: Applied as part of preparation (see above).
2. Additional Mapping Rule: There is no additional mapping rule.
3. Case-Mapping Rule: Uppercase and titlecase characters MUST NOT be
mapped to their lowercase equivalents; see further discussion in
<a href="#section-3.4">Section 3.4</a>.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
4. Normalization Rule: Unicode Normalization Form C (NFC) MUST be
applied to all characters.
5. Directionality Rule: Applications MUST apply the "Bidi Rule"
defined in [<a href="./rfc5893" title=""Right-to-Left Scripts for Internationalized Domain Names for Applications (IDNA)"">RFC5893</a>] to strings that contain right-to-left
characters (i.e., each of the six conditions of the Bidi Rule
must be satisfied).
<span class="h4"><a class="selflink" id="section-3.3.3" href="#section-3.3.3">3.3.3</a>. Comparison</span>
An entity that performs comparison of two strings according to this
profile MUST prepare each string as specified in <a href="#section-3.3.1">Section 3.3.1</a> and
then enforce the rules specified in <a href="#section-3.3.2">Section 3.3.2</a>. The two strings
are to be considered equivalent if they are an exact octet-for-octet
match (sometimes called "bit-string identity").
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. Case Mapping vs. Case Preservation</span>
In order to accommodate the widest range of username constructs in
applications, this document defines two username profiles:
UsernameCaseMapped and UsernameCasePreserved. These two profiles
differ only in the Case-Mapping Rule and are otherwise identical.
Case mapping is a matter for the application protocol, protocol
implementation, or end deployment. In general, this document
suggests that it is preferable to apply the UsernameCaseMapped
profile and therefore perform case mapping, because not doing so can
lead to false positives during authentication and authorization (as
described in [<a href="./rfc6943" title=""Issues in Identifier Comparison for Security Purposes"">RFC6943</a>]) and can result in confusion among end users,
given the prevalence of case mapping in many existing protocols and
applications. However, there can be good reasons to apply the
UsernameCasePreserved profile and thus not perform case mapping, such
as backward compatibility with deployed infrastructure.
In particular:
o SASL mechanisms that follow the recommendations in this document
MUST specify whether and when case mapping is to be applied to
authentication identifiers. SASL mechanisms SHOULD delay any case
mapping to the last possible moment, such as when doing a lookup
by username, performing username comparisons, or generating a
cryptographic salt from a username (if the last possible moment
happens on the server, then decisions about case mapping can be a
matter of deployment policy). In keeping with [<a href="./rfc4422" title=""Simple Authentication and Security Layer (SASL)"">RFC4422</a>], SASL
mechanisms are not to apply this or any other profile to
authorization identifiers, only to authentication identifiers.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
o Application protocols that use SASL (such as IMAP [<a href="./rfc3501" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">RFC3501</a>] and
the Extensible Messaging and Presence Protocol (XMPP) [<a href="./rfc6120" title=""Extensible Messaging and Presence Protocol (XMPP): Core"">RFC6120</a>])
and that directly reuse this profile MUST specify whether or not
case mapping is to be applied to authorization identifiers. Such
"SASL application protocols" SHOULD delay any case-mapping of
authorization identifiers to the last possible moment, which
happens to necessarily be on the server side (this enables
decisions about case mapping to be a matter of deployment policy).
In keeping with [<a href="./rfc4422" title=""Simple Authentication and Security Layer (SASL)"">RFC4422</a>], SASL application protocols are not to
apply this or any other profile to authentication identifiers,
only to authorization identifiers.
o Application protocols that do not use SASL (such as HTTP
authentication with the HTTP Basic and Digest schemes as specified
in [<a href="#ref-HTTP-BASIC-AUTH">HTTP-BASIC-AUTH</a>] and [<a href="#ref-HTTP-DIGEST-AUTH">HTTP-DIGEST-AUTH</a>]) but that directly
reuse this profile MUST specify whether and when case mapping is
to be applied to authentication identifiers or authorization
identifiers, or both. Such "non-SASL application protocols"
SHOULD delay any case mapping to the last possible moment, such as
when doing a lookup by username, performing username comparisons,
or generating a cryptographic salt from a username (if the last
possible moment happens on the server, then decisions about case
mapping can be a matter of deployment policy).
If the specification for a SASL mechanism, SASL application protocol,
or non-SASL application protocol uses the UsernameCaseMapped profile,
it MUST clearly describe whether case mapping is to be applied at the
level of the protocol itself, implementations thereof, or service
deployments (each of these approaches can be legitimate, depending on
the application in question).
<span class="h3"><a class="selflink" id="section-3.5" href="#section-3.5">3.5</a>. Application-Layer Constructs</span>
Both the UsernameCaseMapped and UsernameCasePreserved profiles enable
an application protocol, implementation, or deployment to create
application-layer constructs such as a username that is a space-
separated set of userparts like "Firstname Middlename Lastname".
Although such a construct is not a profile of the PRECIS
IdentifierClass (because U+0020 SPACE is not allowed in the
IdentifierClass), it can be created at the application layer because
U+0020 SPACE can be used as a separator between instances of the
PRECIS IdentifierClass (e.g., userparts as defined in this
specification).
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
<span class="h3"><a class="selflink" id="section-3.6" href="#section-3.6">3.6</a>. Examples</span>
The following examples illustrate a small number of userparts (not
usernames) that are consistent with the format defined above (note
that the characters "<" and ">" are used here to delineate the actual
userparts and are not part of the userpart strings).
+--------------------------+---------------------------------+
| # | Userpart | Notes |
+--------------------------+---------------------------------+
| 1 | <juliet@example.com> | The at-sign is allowed in the |
| | | PRECIS IdentifierClass |
+--------------------------+---------------------------------+
| 2 | <fussball> | |
+--------------------------+---------------------------------+
| 3 | <fu&#xDF;ball> | The third character is LATIN |
| | | SMALL LETTER SHARP S (U+00DF) |
+--------------------------+---------------------------------+
| 4 | <&#x3C0;> | A userpart of GREEK SMALL |
| | | LETTER PI (U+03C0) |
+--------------------------+---------------------------------+
| 5 | <&#x3A3;> | A userpart of GREEK CAPITAL |
| | | LETTER SIGMA (U+03A3) |
+--------------------------+---------------------------------+
| 6 | <&#x3C3;> | A userpart of GREEK SMALL |
| | | LETTER SIGMA (U+03C3) |
+--------------------------+---------------------------------+
| 7 | <&#x3C2;> | A userpart of GREEK SMALL |
| | | LETTER FINAL SIGMA (U+03C2) |
+--------------------------+---------------------------------+
Table 1: A Sample of Legal Userparts
Several points are worth noting. Regarding examples 2 and 3:
although in German the character eszett (LATIN SMALL LETTER SHARP S
(U+00DF)) can mostly be used interchangeably with the two characters
"ss", the userparts in these examples are different and (if desired)
a server would need to enforce a registration policy that disallows
one of them if the other is registered. Regarding examples 5, 6, and
7: optional case-mapping of GREEK CAPITAL LETTER SIGMA (U+03A3) to
lowercase (i.e., to GREEK SMALL LETTER SIGMA (U+03C3)) during
comparison would result in matching the userparts in examples 5 and
6; however, because the PRECIS mapping rules do not account for the
special status of GREEK SMALL LETTER FINAL SIGMA (U+03C2), the
userparts in examples 5 and 7 or examples 6 and 7 would not be
matched during comparison.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
The following examples illustrate strings that are not valid
userparts (not usernames) because they violate the format defined
above.
+--------------------------+---------------------------------+
| # | Non-Userpart String | Notes |
+--------------------------+---------------------------------+
| 8 | <foo bar> | Space (U+0020) is disallowed in |
| | | the userpart |
+--------------------------+---------------------------------+
| 9 | <> | Zero-length userpart |
+--------------------------+---------------------------------+
| 10| <henry&#x2163;> | The sixth character is ROMAN |
| | | NUMERAL FOUR (U+2163) |
+--------------------------+---------------------------------+
| 11| <&#x265A;> | A localpart of BLACK CHESS KING |
| | | (U+265A) |
+--------------------------+---------------------------------+
Table 2: A Sample of Strings That Violate the Userpart Rule
Here again, several points are worth noting. Regarding example 8:
although this is not a valid userpart, it is a valid username because
it is a space-separated sequence of userparts. Regarding example 10:
the Unicode character ROMAN NUMERAL FOUR (U+2163) has a compatibility
equivalent of the string formed of LATIN CAPITAL LETTER I (U+0049)
and LATIN CAPITAL LETTER V (U+0056), but characters with
compatibility equivalents are not allowed in the PRECIS
IdentifierClass. Regarding example 11: symbol characters such as
BLACK CHESS KING (U+265A) are not allowed in the PRECIS
IdentifierClass.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Passwords</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Definition</span>
This document specifies that a password is a string of Unicode code
points [<a href="#ref-Unicode" title=""The Unicode Standard"">Unicode</a>], encoded using UTF-8 [<a href="./rfc3629" title=""UTF-8, a transformation format of ISO 10646"">RFC3629</a>], and conformant to
the OpaqueString profile (specified below) of the PRECIS
FreeformClass defined in <a href="./rfc7564#section-4.3">Section 4.3 of [RFC7564]</a>.
The syntax for a password is defined as follows, using the Augmented
Backus-Naur Form (ABNF) [<a href="./rfc5234" title=""Augmented BNF for Syntax Specifications: ABNF"">RFC5234</a>].
password = 1*(freebyte)
;
; a "freebyte" is a byte used to represent a
; UTF-8 encoded Unicode code point that can be
; contained in a string that conforms to the
; PRECIS FreeformClass
;
All code points and blocks not explicitly allowed in the PRECIS
FreeformClass are disallowed; this includes private use characters,
surrogate code points, and the other code points and blocks defined
as "Prohibited Output" in <a href="./rfc4013#section-2.3">Section 2.3 of RFC 4013</a> (when corrected per
[<a href="#ref-Err1812" title="RFC 4013">Err1812</a>]).
A password MUST NOT be zero bytes in length. This rule is to be
enforced after any normalization and mapping of code points.
Note: Some existing systems allow an empty string in places where
a password would be expected (e.g., command-line tools that might
be called from an automated script, or servers that might need to
be restarted without human intervention). From the perspective of
this document (and <a href="./rfc4013">RFC 4013</a> before it), these empty strings are
not passwords but are workarounds for the practical difficulty of
using passwords in certain scenarios. The prohibition of
zero-length passwords is not a recommendation regarding password
strength (because a password of only one byte is highly insecure)
but is meant to prevent applications from mistakenly omitting a
password entirely; such an outcome is possible when
internationalized characters are accepted, because a non-empty
sequence of characters can result in a zero-length password after
canonicalization.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
In protocols that provide passwords as input to a cryptographic
algorithm such as a hash function, the client will need to perform
enforcement of the rules for the OpaqueString profile before applying
the algorithm, because the password is not available to the server in
plaintext form.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. OpaqueString Profile</span>
The definition of the OpaqueString profile is provided in the
following sections, including detailed information about preparation,
enforcement, and comparison (for details on the distinction between
these actions, refer to [<a href="./rfc7564" title=""PRECIS Framework: Preparation, Enforcement, and Comparison of Internationalized Strings in Application Protocols"">RFC7564</a>]).
<span class="h4"><a class="selflink" id="section-4.2.1" href="#section-4.2.1">4.2.1</a>. Preparation</span>
An entity that prepares a string according to this profile MUST
ensure that the string consists only of Unicode code points that
conform to the FreeformClass base string class defined in [<a href="./rfc7564" title=""PRECIS Framework: Preparation, Enforcement, and Comparison of Internationalized Strings in Application Protocols"">RFC7564</a>].
In addition, the entity MUST encode the string as UTF-8 [<a href="./rfc3629" title=""UTF-8, a transformation format of ISO 10646"">RFC3629</a>].
<span class="h4"><a class="selflink" id="section-4.2.2" href="#section-4.2.2">4.2.2</a>. Enforcement</span>
An entity that performs enforcement according to this profile MUST
prepare a string as described in <a href="#section-4.2.1">Section 4.2.1</a> and MUST also apply
the rules specified below for the OpaqueString profile (these rules
MUST be applied in the order shown):
1. Width-Mapping Rule: Fullwidth and halfwidth characters MUST NOT
be mapped to their decomposition mappings (see Unicode Standard
Annex #11 [<a href="#ref-UAX11" title=""East Asian Width"">UAX11</a>]).
2. Additional Mapping Rule: Any instances of non-ASCII space MUST be
mapped to ASCII space (U+0020); a non-ASCII space is any Unicode
code point having a Unicode general category of "Zs" (with the
exception of U+0020).
3. Case-Mapping Rule: Uppercase and titlecase characters MUST NOT be
mapped to their lowercase equivalents.
4. Normalization Rule: Unicode Normalization Form C (NFC) MUST be
applied to all characters.
5. Directionality Rule: There is no directionality rule. The "Bidi
Rule" (defined in [<a href="./rfc5893" title=""Right-to-Left Scripts for Internationalized Domain Names for Applications (IDNA)"">RFC5893</a>]) and similar rules are unnecessary
and inapplicable to passwords, because they can reduce the range
of characters that are allowed in a string and therefore reduce
the amount of entropy that is possible in a password. Such rules
are intended to minimize the possibility that the same string
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
will be displayed differently on a layout system set for
right-to-left display and a layout system set for left-to-right
display; however, passwords are typically not displayed at all
and are rarely meant to be interoperable across different layout
systems in the way that non-secret strings like domain names and
usernames are. Furthermore, it is perfectly acceptable for
opaque strings other than passwords to be presented differently
in different layout systems, as long as the presentation is
consistent in any given layout system.
<span class="h4"><a class="selflink" id="section-4.2.3" href="#section-4.2.3">4.2.3</a>. Comparison</span>
An entity that performs comparison of two strings according to this
profile MUST prepare each string as specified in <a href="#section-4.2.1">Section 4.2.1</a> and
then enforce the rules specified in <a href="#section-4.2.2">Section 4.2.2</a>. The two strings
are to be considered equivalent if they are an exact octet-for-octet
match (sometimes called "bit-string identity").
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Examples</span>
The following examples illustrate a small number of passwords that
are consistent with the format defined above (note that the
characters "<" and ">" are used here to delineate the actual
passwords and are not part of the password strings).
+------------------------------------+------------------------------+
| # | Password | Notes |
+------------------------------------+------------------------------+
| 12| <correct horse battery staple> | ASCII space is allowed |
+------------------------------------+------------------------------+
| 13| <Correct Horse Battery Staple> | Differs by case from |
| | | example 12 |
+------------------------------------+------------------------------+
| 14| <&#x3C0;&#xDF;&#xE5;> | Non-ASCII letters are OK |
| | | (e.g., GREEK SMALL LETTER |
| | | PI (U+03C0)) |
+------------------------------------+------------------------------+
| 15| <Jack of &#x2666;s> | Symbols are OK (e.g., BLACK |
| | | DIAMOND SUIT (U+2666)) |
+------------------------------------+------------------------------+
| 16| <foo&#x1680;bar> | OGHAM SPACE MARK (U+1680) is |
| | | mapped to U+0020, and thus |
| | | the full string is mapped to |
| | | <foo bar> |
+------------------------------------+------------------------------+
Table 3: A Sample of Legal Passwords
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
The following example illustrates a string that is not a valid
password because it violates the format defined above.
+------------------------------------+------------------------------+
| # | Password | Notes |
+------------------------------------+------------------------------+
| 17| <my cat is a &#x9;by> | Controls are disallowed |
+------------------------------------+------------------------------+
Table 4: A String That Violates the Password Rules
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Use in Application Protocols</span>
This specification defines only the PRECIS-based rules for the
handling of strings conforming to the UsernameCaseMapped and
UsernameCasePreserved profiles of the PRECIS IdentifierClass, and
strings conforming to the OpaqueString profile of the PRECIS
FreeformClass. It is the responsibility of an application protocol
to specify the protocol slots in which such strings can appear, the
entities that are expected to enforce the rules governing such
strings, and at what points during protocol processing or interface
handling the rules need to be enforced. See <a href="./rfc7564#section-6">Section 6 of [RFC7564]</a>
for guidelines on using PRECIS profiles in applications.
Above and beyond the PRECIS-based rules specified here, application
protocols can also define application-specific rules governing such
strings (rules regarding minimum or maximum length, further
restrictions on allowable characters or character ranges, safeguards
to mitigate the effects of visually similar characters, etc.),
application-layer constructs (see <a href="#section-3.5">Section 3.5</a>), and related matters.
Some PRECIS profile definitions encourage entities that enforce the
rules to be liberal in what they accept. However, for usernames and
passwords such a policy can be problematic, because it can lead to
false positives. An in-depth discussion can be found in [<a href="./rfc6943" title=""Issues in Identifier Comparison for Security Purposes"">RFC6943</a>].
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Migration</span>
The rules defined in this specification differ slightly from those
defined by the SASLprep specification [<a href="./rfc4013" title=""SASLprep: Stringprep Profile for User Names and Passwords"">RFC4013</a>]. The following
sections describe these differences, along with their implications
for migration, in more detail.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Usernames</span>
Deployments that currently use SASLprep for handling usernames might
need to scrub existing data when they migrate to the rules defined in
this specification. In particular:
o SASLprep specified the use of Unicode Normalization Form KC
(NFKC), whereas the UsernameCaseMapped and UsernameCasePreserved
profiles employ Unicode Normalization Form C (NFC). In practice,
this change is unlikely to cause significant problems, because
NFKC provides methods for mapping Unicode code points with
compatibility equivalents to those equivalents, whereas the PRECIS
IdentifierClass entirely disallows Unicode code points with
compatibility equivalents (i.e., during comparison, NFKC is more
"aggressive" about finding matches than NFC). A few examples
might suffice to indicate the nature of the problem:
1. LATIN SMALL LETTER LONG S (U+017F) is compatibility equivalent
to LATIN SMALL LETTER S (U+0073).
2. ROMAN NUMERAL FOUR (U+2163) is compatibility equivalent to
LATIN CAPITAL LETTER I (U+0049) and LATIN CAPITAL LETTER V
(U+0056).
3. LATIN SMALL LIGATURE FI (U+FB01) is compatibility equivalent
to LATIN SMALL LETTER F (U+0066) and LATIN SMALL LETTER I
(U+0069).
Under SASLprep, the use of NFKC also handled the mapping of
fullwidth and halfwidth code points to their decomposition
mappings.
For migration purposes, operators might want to search their
database of usernames for names containing Unicode code points
with compatibility equivalents and, where there is no conflict,
map those code points to their equivalents. Naturally, it is
possible that during this process the operator will discover
conflicting usernames (e.g., HENRYIV with the last two characters
being LATIN CAPITAL LETTER I (U+0049) and LATIN CAPITAL LETTER V
(U+0056) vs. "HENRYIV" with the last character being ROMAN NUMERAL
FOUR (U+2163), which is compatibility equivalent to U+0049 and
U+0056); in these cases, the operator will need to determine how
to proceed -- for instance, by disabling the account whose name
contains a Unicode code point with a compatibility equivalent.
Such cases are probably rare, but it is important for operators to
be aware of them.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
o SASLprep mapped the "characters commonly mapped to nothing" from
<a href="./rfc3454#appendix-B.1">Appendix B.1 of [RFC3454]</a>) to nothing, whereas the PRECIS
IdentifierClass entirely disallows most of these characters, which
correspond to the code points from the PRECIS "M" category defined
under <a href="./rfc7564#section-9.13">Section 9.13 of [RFC7564]</a> (with the exception of MONGOLIAN
TODO SOFT HYPHEN (U+1806), which was "commonly mapped to nothing"
in Unicode 3.2 but at the time of this writing does not have a
derived property of Default_Ignorable_Code_Point in Unicode 7.0).
For migration purposes, the operator might want to remove from
usernames any code points contained in the PRECIS "M" category
(e.g., SOFT HYPHEN (U+00AD)). Because these code points would
have been "mapped to nothing" in stringprep, in practice a user
would not notice the difference if, upon migration to PRECIS, the
code points are removed.
o SASLprep allowed uppercase and titlecase characters, whereas the
UsernameCaseMapped profile maps uppercase and titlecase characters
to their lowercase equivalents (by contrast, the
UsernameCasePreserved profile matches SASLprep in this regard).
For migration purposes, the operator can use either the
UsernameCaseMapped profile (thus losing the case information) or
the UsernameCasePreserved profile (thus ignoring case difference
when comparing usernames).
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Passwords</span>
Depending on local service policy, migration from <a href="./rfc4013">RFC 4013</a> to this
specification might not involve any scrubbing of data (because
passwords might not be stored in the clear anyway); however, service
providers need to be aware of possible issues that might arise during
migration. In particular:
o SASLprep specified the use of Unicode Normalization Form KC
(NFKC), whereas the OpaqueString profile employs Unicode
Normalization Form C (NFC). Because NFKC is more aggressive about
finding matches than NFC, in practice this change is unlikely to
cause significant problems and indeed has the security benefit of
probably resulting in fewer false positives when comparing
passwords. A few examples might suffice to indicate the nature of
the problem:
1. LATIN SMALL LETTER LONG S (U+017F) is compatibility equivalent
to LATIN SMALL LETTER S (U+0073).
2. ROMAN NUMERAL FOUR (U+2163) is compatibility equivalent to
LATIN CAPITAL LETTER I (U+0049) and LATIN CAPITAL LETTER V
(U+0056).
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
3. LATIN SMALL LIGATURE FI (U+FB01) is compatibility equivalent
to LATIN SMALL LETTER F (U+0066) and LATIN SMALL LETTER I
(U+0069).
Under SASLprep, the use of NFKC also handled the mapping of
fullwidth and halfwidth code points to their decomposition
mappings. Although it is expected that code points with
compatibility equivalents are rare in existing passwords, some
passwords that matched when SASLprep was used might no longer work
when the rules in this specification are applied.
o SASLprep mapped the "characters commonly mapped to nothing" from
<a href="./rfc3454#appendix-B.1">Appendix B.1 of [RFC3454]</a>) to nothing, whereas the PRECIS
FreeformClass entirely disallows such characters, which correspond
to the code points from the PRECIS "M" category defined under
<a href="./rfc7564#section-9.13">Section 9.13 of [RFC7564]</a> (with the exception of MONGOLIAN TODO
SOFT HYPHEN (U+1806), which was commonly mapped to nothing in
Unicode 3.2 but at the time of this writing is allowed by
Unicode 7.0). In practice, this change will probably have no
effect on comparison, but user-oriented software might reject such
code points instead of ignoring them during password preparation.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. IANA Considerations</span>
IANA has made the updates described below.
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. UsernameCaseMapped Profile</span>
IANA has added the following entry to the "PRECIS Profiles" registry.
Name: UsernameCaseMapped.
Base Class: IdentifierClass.
Applicability: Usernames in security and application protocols.
Replaces: The SASLprep profile of stringprep.
Width-Mapping Rule: Map fullwidth and halfwidth characters to their
decomposition mappings.
Additional Mapping Rule: None.
Case-Mapping Rule: Map uppercase and titlecase characters to
lowercase.
Normalization Rule: NFC.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
Directionality Rule: The "Bidi Rule" defined in <a href="./rfc5893">RFC 5893</a> applies.
Enforcement: To be defined by security or application protocols that
use this profile.
Specification: <a href="./rfc7613">RFC 7613</a> (this document), <a href="#section-3.2">Section 3.2</a>.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. UsernameCasePreserved Profile</span>
IANA has added the following entry to the "PRECIS Profiles" registry.
Name: UsernameCasePreserved.
Base Class: IdentifierClass.
Applicability: Usernames in security and application protocols.
Replaces: The SASLprep profile of stringprep.
Width-Mapping Rule: Map fullwidth and halfwidth characters to their
decomposition mappings.
Additional Mapping Rule: None.
Case-Mapping Rule: None.
Normalization Rule: NFC.
Directionality Rule: The "Bidi Rule" defined in <a href="./rfc5893">RFC 5893</a> applies.
Enforcement: To be defined by security or application protocols that
use this profile.
Specification: <a href="./rfc7613">RFC 7613</a> (this document), <a href="#section-3.3">Section 3.3</a>.
<span class="h3"><a class="selflink" id="section-7.3" href="#section-7.3">7.3</a>. OpaqueString Profile</span>
IANA has added the following entry to the "PRECIS Profiles" registry.
Name: OpaqueString.
Base Class: FreeformClass.
Applicability: Passwords and other opaque strings in security and
application protocols.
Replaces: The SASLprep profile of stringprep.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
Width-Mapping Rule: None.
Additional Mapping Rule: Map non-ASCII space characters to ASCII
space.
Case-Mapping Rule: None.
Normalization Rule: NFC.
Directionality Rule: None.
Enforcement: To be defined by security or application protocols that
use this profile.
Specification: <a href="./rfc7613">RFC 7613</a> (this document), <a href="#section-4.2">Section 4.2</a>.
<span class="h3"><a class="selflink" id="section-7.4" href="#section-7.4">7.4</a>. Stringprep Profile</span>
The stringprep specification [<a href="./rfc3454" title=""Preparation of Internationalized Strings ("">RFC3454</a>] did not provide for entries in
the "Stringprep Profiles" registry to have any state except "Current"
or "Not Current". Because this document obsoletes <a href="./rfc4013">RFC 4013</a>, which
registered the SASLprep profile of stringprep, IANA has marked that
profile as "Not Current" and cited this document as an additional
reference.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Security Considerations</span>
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. Password/Passphrase Strength</span>
The ability to include a wide range of characters in passwords and
passphrases can increase the potential for creating a strong password
with high entropy. However, in practice, the ability to include such
characters ought to be weighed against the possible need to reproduce
them on various devices using various input methods.
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. Identifier Comparison</span>
The process of comparing identifiers (such as SASL simple user names,
authentication identifiers, and authorization identifiers) can lead
to either false negatives or false positives, both of which have
security implications. A more detailed discussion can be found in
[<a href="./rfc6943" title=""Issues in Identifier Comparison for Security Purposes"">RFC6943</a>].
<span class="h3"><a class="selflink" id="section-8.3" href="#section-8.3">8.3</a>. Reuse of PRECIS</span>
The security considerations described in [<a href="./rfc7564" title=""PRECIS Framework: Preparation, Enforcement, and Comparison of Internationalized Strings in Application Protocols"">RFC7564</a>] apply to the
IdentifierClass and FreeformClass base string classes used in this
document for usernames and passwords, respectively.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
<span class="h3"><a class="selflink" id="section-8.4" href="#section-8.4">8.4</a>. Reuse of Unicode</span>
The security considerations described in [<a href="#ref-UTS39" title=""Unicode Security Mechanisms"">UTS39</a>] apply to the use of
Unicode characters in usernames and passwords.
<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-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="http://www.rfc-editor.org/info/rfc2119">http://www.rfc-editor.org/info/rfc2119</a>>.
[<a id="ref-RFC3629">RFC3629</a>] Yergeau, F., "UTF-8, a transformation format of
ISO 10646", STD 63, <a href="./rfc3629">RFC 3629</a>, DOI 10.17487/RFC3629,
November 2003, <<a href="http://www.rfc-editor.org/info/rfc3629">http://www.rfc-editor.org/info/rfc3629</a>>.
[<a id="ref-RFC5234">RFC5234</a>] Crocker, D., Ed., and P. Overell, "Augmented BNF for
Syntax Specifications: ABNF", STD 68, <a href="./rfc5234">RFC 5234</a>,
DOI 10.17487/RFC5234, January 2008,
<<a href="http://www.rfc-editor.org/info/rfc5234">http://www.rfc-editor.org/info/rfc5234</a>>.
[<a id="ref-RFC5890">RFC5890</a>] Klensin, J., "Internationalized Domain Names for
Applications (IDNA): Definitions and Document Framework",
<a href="./rfc5890">RFC 5890</a>, DOI 10.17487/RFC5890, August 2010,
<<a href="http://www.rfc-editor.org/info/rfc5890">http://www.rfc-editor.org/info/rfc5890</a>>.
[<a id="ref-RFC6365">RFC6365</a>] Hoffman, P. and J. Klensin, "Terminology Used in
Internationalization in the IETF", <a href="https://www.rfc-editor.org/bcp/bcp166">BCP 166</a>, <a href="./rfc6365">RFC 6365</a>,
DOI 10.17487/RFC6365, September 2011,
<<a href="http://www.rfc-editor.org/info/rfc6365">http://www.rfc-editor.org/info/rfc6365</a>>.
[<a id="ref-RFC7564">RFC7564</a>] Saint-Andre, P. and M. Blanchet, "PRECIS Framework:
Preparation, Enforcement, and Comparison of
Internationalized Strings in Application Protocols",
<a href="./rfc7564">RFC 7564</a>, DOI 10.17487/RFC7564, May 2015,
<<a href="http://www.rfc-editor.org/info/rfc7564">http://www.rfc-editor.org/info/rfc7564</a>>.
[<a id="ref-UAX11">UAX11</a>] Unicode Standard Annex #11, "East Asian Width", edited by
Ken Lunde. An integral part of The Unicode Standard,
<<a href="http://unicode.org/reports/tr11/">http://unicode.org/reports/tr11/</a>>.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
[<a id="ref-Unicode">Unicode</a>] The Unicode Consortium, "The Unicode Standard",
<<a href="http://www.unicode.org/versions/latest/">http://www.unicode.org/versions/latest/</a>>.
[<a id="ref-Unicode7.0">Unicode7.0</a>]
The Unicode Consortium, "The Unicode Standard,
Version 7.0.0", (Mountain View, CA: The Unicode
Consortium, 2014 ISBN 978-1-936213-09-2),
<<a href="http://www.unicode.org/versions/Unicode7.0.0/">http://www.unicode.org/versions/Unicode7.0.0/</a>>.
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. Informative References</span>
[<a id="ref-Err1812">Err1812</a>] RFC Errata, Erratum ID 1812, <a href="./rfc4013">RFC 4013</a>,
<<a href="http://www.rfc-editor.org">http://www.rfc-editor.org</a>>.
[<a id="ref-HTTP-BASIC-AUTH">HTTP-BASIC-AUTH</a>]
Reschke, J., <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&q=inurl:draft-+%22The+%27Basic%27+HTTP+Authentication+Scheme%22'>"The 'Basic' HTTP Authentication Scheme"</a>,
Work in Progress, <a href="./draft-ietf-httpauth-basicauth-update-07">draft-ietf-httpauth-basicauth-update-07</a>,
February 2015.
[<a id="ref-HTTP-DIGEST-AUTH">HTTP-DIGEST-AUTH</a>]
Shekh-Yusef, R., Ed., Ahrens, D., and S. Bremer, "HTTP
Digest Access Authentication", Work in Progress,
<a href="./draft-ietf-httpauth-digest-19">draft-ietf-httpauth-digest-19</a>, April 2015.
[<a id="ref-RFC20">RFC20</a>] Cerf, V., "ASCII format for network interchange", STD 80,
<a href="./rfc20">RFC 20</a>, DOI 10.17487/RFC0020, October 1969,
<<a href="http://www.rfc-editor.org/info/rfc20">http://www.rfc-editor.org/info/rfc20</a>>.
[<a id="ref-RFC3454">RFC3454</a>] Hoffman, P. and M. Blanchet, "Preparation of
Internationalized Strings ("stringprep")", <a href="./rfc3454">RFC 3454</a>,
DOI 10.17487/RFC3454, December 2002,
<<a href="http://www.rfc-editor.org/info/rfc3454">http://www.rfc-editor.org/info/rfc3454</a>>.
[<a id="ref-RFC3501">RFC3501</a>] Crispin, M., "INTERNET MESSAGE ACCESS PROTOCOL -
VERSION 4rev1", <a href="./rfc3501">RFC 3501</a>, DOI 10.17487/RFC3501,
March 2003, <<a href="http://www.rfc-editor.org/info/rfc3501">http://www.rfc-editor.org/info/rfc3501</a>>.
[<a id="ref-RFC4013">RFC4013</a>] Zeilenga, K., "SASLprep: Stringprep Profile for User Names
and Passwords", <a href="./rfc4013">RFC 4013</a>, DOI 10.17487/RFC4013,
February 2005, <<a href="http://www.rfc-editor.org/info/rfc4013">http://www.rfc-editor.org/info/rfc4013</a>>.
[<a id="ref-RFC4422">RFC4422</a>] Melnikov, A., Ed., and K. Zeilenga, Ed., "Simple
Authentication and Security Layer (SASL)", <a href="./rfc4422">RFC 4422</a>,
DOI 10.17487/RFC4422, June 2006,
<<a href="http://www.rfc-editor.org/info/rfc4422">http://www.rfc-editor.org/info/rfc4422</a>>.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
[<a id="ref-RFC4616">RFC4616</a>] Zeilenga, K., Ed., "The PLAIN Simple Authentication and
Security Layer (SASL) Mechanism", <a href="./rfc4616">RFC 4616</a>,
DOI 10.17487/RFC4616, August 2006,
<<a href="http://www.rfc-editor.org/info/rfc4616">http://www.rfc-editor.org/info/rfc4616</a>>.
[<a id="ref-RFC5802">RFC5802</a>] Newman, C., Menon-Sen, A., Melnikov, A., and N. Williams,
"Salted Challenge Response Authentication Mechanism
(SCRAM) SASL and GSS-API Mechanisms", <a href="./rfc5802">RFC 5802</a>,
DOI 10.17487/RFC5802, July 2010,
<<a href="http://www.rfc-editor.org/info/rfc5802">http://www.rfc-editor.org/info/rfc5802</a>>.
[<a id="ref-RFC5891">RFC5891</a>] Klensin, J., "Internationalized Domain Names in
Applications (IDNA): Protocol", <a href="./rfc5891">RFC 5891</a>,
DOI 10.17487/RFC5891, August 2010,
<<a href="http://www.rfc-editor.org/info/rfc5891">http://www.rfc-editor.org/info/rfc5891</a>>.
[<a id="ref-RFC5893">RFC5893</a>] Alvestrand, H., Ed., and C. Karp, "Right-to-Left Scripts
for Internationalized Domain Names for Applications
(IDNA)", <a href="./rfc5893">RFC 5893</a>, DOI 10.17487/RFC5893, August 2010,
<<a href="http://www.rfc-editor.org/info/rfc5893">http://www.rfc-editor.org/info/rfc5893</a>>.
[<a id="ref-RFC5894">RFC5894</a>] Klensin, J., "Internationalized Domain Names for
Applications (IDNA): Background, Explanation, and
Rationale", <a href="./rfc5894">RFC 5894</a>, DOI 10.17487/RFC5894, August 2010,
<<a href="http://www.rfc-editor.org/info/rfc5894">http://www.rfc-editor.org/info/rfc5894</a>>.
[<a id="ref-RFC6120">RFC6120</a>] Saint-Andre, P., "Extensible Messaging and Presence
Protocol (XMPP): Core", <a href="./rfc6120">RFC 6120</a>, DOI 10.17487/RFC6120,
March 2011, <<a href="http://www.rfc-editor.org/info/rfc6120">http://www.rfc-editor.org/info/rfc6120</a>>.
[<a id="ref-RFC6122">RFC6122</a>] Saint-Andre, P., "Extensible Messaging and Presence
Protocol (XMPP): Address Format", <a href="./rfc6122">RFC 6122</a>,
DOI 10.17487/RFC6122, March 2011,
<<a href="http://www.rfc-editor.org/info/rfc6122">http://www.rfc-editor.org/info/rfc6122</a>>.
[<a id="ref-RFC6943">RFC6943</a>] Thaler, D., Ed., "Issues in Identifier Comparison for
Security Purposes", <a href="./rfc6943">RFC 6943</a>, DOI 10.17487/RFC6943,
May 2013, <<a href="http://www.rfc-editor.org/info/rfc6943">http://www.rfc-editor.org/info/rfc6943</a>>.
[<a id="ref-RFC7542">RFC7542</a>] DeKok, A., "The Network Access Identifier", <a href="./rfc7542">RFC 7542</a>,
DOI 10.17487/RFC7542, May 2015,
<<a href="http://www.rfc-editor.org/info/rfc7542">http://www.rfc-editor.org/info/rfc7542</a>>.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
[<a id="ref-UTS39">UTS39</a>] Unicode Technical Standard #39, "Unicode Security
Mechanisms", edited by Mark Davis and Michel Suignard,
<<a href="http://unicode.org/reports/tr39/">http://unicode.org/reports/tr39/</a>>.
[<a id="ref-XMPP-ADDR">XMPP-ADDR</a>]
Saint-Andre, P., "Extensible Messaging and Presence
Protocol (XMPP): Address Format", Work in Progress,
<a href="./draft-ietf-xmpp-6122bis-24">draft-ietf-xmpp-6122bis-24</a>, June 2015.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Differences from <a href="./rfc4013">RFC 4013</a></span>
This document builds upon the PRECIS framework defined in [<a href="./rfc7564" title=""PRECIS Framework: Preparation, Enforcement, and Comparison of Internationalized Strings in Application Protocols"">RFC7564</a>],
which differs fundamentally from the stringprep technology [<a href="./rfc3454" title=""Preparation of Internationalized Strings ("">RFC3454</a>]
used in SASLprep [<a href="./rfc4013" title=""SASLprep: Stringprep Profile for User Names and Passwords"">RFC4013</a>]. The primary difference is that
stringprep profiles allowed all characters except those characters
that were explicitly disallowed, whereas PRECIS profiles disallow all
characters except those characters that are explicitly allowed (this
"inclusion model" was originally used for internationalized domain
names in [<a href="./rfc5891" title=""Internationalized Domain Names in Applications (IDNA): Protocol"">RFC5891</a>]; see [<a href="./rfc5894" title=""Internationalized Domain Names for Applications (IDNA): Background, Explanation, and Rationale"">RFC5894</a>] for further discussion). It is
important to keep this distinction in mind when comparing the
technology defined in this document to SASLprep [<a href="./rfc4013" title=""SASLprep: Stringprep Profile for User Names and Passwords"">RFC4013</a>].
The following substantive modifications were made from <a href="./rfc4013">RFC 4013</a>.
o A single SASLprep algorithm was replaced by three separate
algorithms: one for usernames with case mapping, one for usernames
with case preservation, and one for passwords.
o The new preparation algorithms use PRECIS instead of a stringprep
profile. The new algorithms work independently of Unicode
versions.
o As recommended in the PRECIS framework, changed the Unicode
normalization form from NFKC to NFC.
o Some Unicode code points that were mapped to nothing in <a href="./rfc4013">RFC 4013</a>
are simply disallowed by PRECIS.
<span class="grey">Saint-Andre & Melnikov Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc7613">RFC 7613</a> PRECIS: Usernames and Passwords August 2015</span>
Acknowledgements
This document borrows some text from [<a href="./rfc4013" title=""SASLprep: Stringprep Profile for User Names and Passwords"">RFC4013</a>] and [<a href="./rfc6120" title=""Extensible Messaging and Presence Protocol (XMPP): Core"">RFC6120</a>].
The following individuals provided helpful feedback on this document:
Marc Blanchet, Ben Campbell, Alan DeKok, Joe Hildebrand, Jeffrey
Hutzelman, Simon Josefsson, Jonathan Lennox, James Manger, Matt
Miller, Chris Newman, Yutaka OIWA, Pete Resnick, Andrew Sullivan,
Nico Williams, and Yoshiro YONEYA. Nico Williams in particular
deserves special recognition for providing text that was used in
<a href="#section-3.4">Section 3.4</a>. Thanks also to Takahiro NEMOTO and Yoshiro YONEYA for
implementation feedback.
Robert Sparks and Derek Atkins reviewed the document on behalf of the
General Area Review Team and the Security Directorate, respectively.
Benoit Claise and Stephen Farrell provided helpful input during IESG
review.
Thanks to Matt Miller as document shepherd, Marc Blanchet and Yoshiro
YONEYA as working group chairs, and Pete Resnick and Barry Leiba as
area directors.
Peter Saint-Andre wishes to acknowledge Cisco Systems, Inc., for
employing him during his work on earlier draft versions of this
document.
Authors' Addresses
Peter Saint-Andre
&yet
Email: peter@andyet.com
URI: <a href="https://andyet.com/">https://andyet.com/</a>
Alexey Melnikov
Isode Ltd
5 Castle Business Village
36 Station Road
Hampton, Middlesex TW12 2BX
United Kingdom
Email: Alexey.Melnikov@isode.com
Saint-Andre & Melnikov Standards Track [Page 27]
</pre>
|