1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641
|
.. hazmat::
Key Serialization
=================
.. module:: cryptography.hazmat.primitives.serialization
.. testsetup::
import base64
pem_data = b"""
-----BEGIN RSA PRIVATE KEY-----
MIICXgIBAAKBgQDn09PV9KPE7Q+N5K5UtNLT1DLl8z/pKM2pP5tXqWx2OsEw00lC
kDHdHESwzS050s/8rtkERKKyusCzCm9+vC1pQzUlmtibfF4PQAQc1pJL6KHqlidg
Hw49atYmnC25CaeXt65pAYXoIacOZ8k5X7FW3Eagex8nG0iMw4ObOtg6CwIDAQAB
AoGBAL31l/4YYN1rNrSZLrQgGyUSGsbLxJHEKolFon95R3O1fzoH117gkstQb4TE
Cwv3jw/JIfBaYUq8tku/AE9D2Jx51x7kYaCuQIMTavKIgkXKfxTQCQDjSEfkvXMW
4WOIj5sYdSCNbzLbaeFsWG32bSsBTy/sSheDIlCEFnqDuqwBAkEA+wYfJEMDf5nS
VCQd9VKGM4HVeTWBioaWBFCflFdhc1Vb65dsNDp8iIMZgAHC2LEX5dMUmgqXk7AT
lwFlIeW4CwJBAOxsSfuIVMuPKyx1xQ6ebpC7zeVxIOdswcM8ain91MSGDdKZw6pF
ioFh3kUbKHw4yqqHbdRmUDAJ1mcgGJQOxgECQQCmQaGylKfmhWymyd0FtIip6J4I
z4ViyEznwrZOu6kRiEF/QiUqWmpMx/fFrmTsvC5Fy43jkIxgBsiSxRvEXa+NAkB+
5m0bhwTEslchKSGZhC6inzuYAQ4BSh4C1mXBnk5bIf0/Ymtk9KiwY8CzZS1o5+7Y
c5LfI/+8mTss5UxsBDYBAkEA6NqhcsNWndIJZiWUU4u+RjFUQXqH8WCyJmEDCNxs
7SGRS1DTUGX4Y70m9dQpguy6Zg+gpHC+o+ERZR06uEQr+w==
-----END RSA PRIVATE KEY-----
""".strip()
public_pem_data = b"""
-----BEGIN PUBLIC KEY-----
MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDn09PV9KPE7Q+N5K5UtNLT1DLl
8z/pKM2pP5tXqWx2OsEw00lCkDHdHESwzS050s/8rtkERKKyusCzCm9+vC1pQzUl
mtibfF4PQAQc1pJL6KHqlidgHw49atYmnC25CaeXt65pAYXoIacOZ8k5X7FW3Eag
ex8nG0iMw4ObOtg6CwIDAQAB
-----END PUBLIC KEY-----
""".strip()
der_data = base64.b64decode(
b"MIICdwIBADANBgkqhkiG9w0BAQEFAASCAmEwggJdAgEAAoGBALskegl+DrI3Msw5Z63x"
b"nj1rgoPR0KykwBi+jZgAwHv/B0TJyhy6NuEnaf+x442L7lepOqoWQzlUGXyuaSQU9mT/"
b"vHTGZ2xM8QJJaccr4eGho0MU9HePyNCFWjWVrGKpwSEAd6CLlzC0Wiy4kC9IoAUoS/IP"
b"jeyLTQNCddatgcARAgMBAAECgYAA/LlKJgeJUStTcpHgGD6mXjHvnAwWJELQKDP5+tA8"
b"VAQGwBX1G5qzJDGrPGtHQ7DSqdwF4YFZtgTpZmGq1wsAjz3lv6L4XiVsHiIPtP1B4gMx"
b"X9ogxcDzVQ7hyezXPioMAcp7Isus9Csn8HhftcL56BRabn6GvWqbIAy6zJcgEQJBAMlZ"
b"nymKW5/jKth+wkCfqEXlPhGNPO1uq87QZUbYxwdjtSM09J9+HMfH+WXR9ARCOL46DJ0I"
b"JfyjcdmuDDlh9IkCQQDt76up1Tmc7lkb/89IRBu2MudGJPMEf96VCG11nmcXulyk1OLi"
b"TXfO62YpxZbgYrvlrNxEYlSG7WQMztBgA51JAkBU2RhyJ+S+drsaaigvlVgSxCyotszi"
b"/Q0XZMgY18bfPUwanvkqsLkuEv3sw1HB7an9t3aTQdjIIpQad/acw8OJAkEAjvmnCK21"
b"KgTbjQShtQYgNNLPwImxcjG4OYvP4o6l2k9FHlNCZsQwSymOwWkXKYyK5g+CaKFBs7Zw"
b"mXWpJxjk6QJBAInqbm1w3yVfGD9I2mMQi/6oDJQP3pdWU4mU4h4sdDyRgTQLpkD4yypg"
b"jOACt4mTzxifSVT9fT+a79SkT8FFmZE="
)
public_der_data = base64.b64decode(
b"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC7JHoJfg6yNzLMOWet8Z49a4KD0dCs"
b"pMAYvo2YAMB7/wdEycocujbhJ2n/seONi+5XqTqqFkM5VBl8rmkkFPZk/7x0xmdsTPEC"
b"SWnHK+HhoaNDFPR3j8jQhVo1laxiqcEhAHegi5cwtFosuJAvSKAFKEvyD43si00DQnXW"
b"rYHAEQIDAQAB"
)
message = b""
def sign_with_rsa_key(key, message):
return b""
def sign_with_dsa_key(key, message):
return b""
parameters_pem_data = b"""
-----BEGIN DH PARAMETERS-----
MIGHAoGBALsrWt44U1ojqTy88o0wfjysBE51V6Vtarjm2+5BslQK/RtlndHde3gx
+ccNs+InANszcuJFI8AHt4743kGRzy5XSlul4q4dDJENOHoyqYxueFuFVJELEwLQ
XrX/McKw+hS6GPVQnw6tZhgGo9apdNdYgeLQeQded8Bum8jqzP3rAgEC
-----END DH PARAMETERS-----
""".strip()
parameters_der_data = base64.b64decode(
b"MIGHAoGBALsrWt44U1ojqTy88o0wfjysBE51V6Vtarjm2+5BslQK/RtlndHde3gx+ccNs+In"
b"ANsz\ncuJFI8AHt4743kGRzy5XSlul4q4dDJENOHoyqYxueFuFVJELEwLQXrX/McKw+hS6GP"
b"VQnw6tZhgG\no9apdNdYgeLQeQded8Bum8jqzP3rAgEC"
)
There are several common schemes for serializing asymmetric private and public
keys to bytes. They generally support encryption of private keys and additional
key metadata.
Many serialization formats support multiple different types of asymmetric keys
and will return an instance of the appropriate type. You should check that
the returned key matches the type your application expects when using these
methods.
.. doctest::
>>> from cryptography.hazmat.primitives.asymmetric import dsa, rsa
>>> from cryptography.hazmat.primitives.serialization import load_pem_private_key
>>> key = load_pem_private_key(pem_data, password=None)
>>> if isinstance(key, rsa.RSAPrivateKey):
... signature = sign_with_rsa_key(key, message)
... elif isinstance(key, dsa.DSAPrivateKey):
... signature = sign_with_dsa_key(key, message)
... else:
... raise TypeError
Key dumping
~~~~~~~~~~~
The ``serialization`` module contains functions for loading keys from
``bytes``. To dump a ``key`` object to ``bytes``, you must call the appropriate
method on the key object. Documentation for these methods in found in the
:mod:`~cryptography.hazmat.primitives.asymmetric.rsa`,
:mod:`~cryptography.hazmat.primitives.asymmetric.dsa`, and
:mod:`~cryptography.hazmat.primitives.asymmetric.ec` module documentation.
PEM
~~~
PEM is an encapsulation format, meaning keys in it can actually be any of
several different key types. However these are all self-identifying, so you
don't need to worry about this detail. PEM keys are recognizable because they
all begin with ``-----BEGIN {format}-----`` and end with ``-----END
{format}-----``.
.. note::
A PEM block which starts with ``-----BEGIN CERTIFICATE-----`` is not a
public or private key, it's an :doc:`X.509 Certificate </x509/index>`. You
can load it using :func:`~cryptography.x509.load_pem_x509_certificate` and
extract the public key with
:meth:`Certificate.public_key <cryptography.x509.Certificate.public_key>`.
.. function:: load_pem_private_key(data, password, *, unsafe_skip_rsa_key_validation=False)
.. versionadded:: 0.6
.. note::
SSH private keys are a different format and must be loaded with
:func:`load_ssh_private_key`.
Deserialize a private key from PEM encoded data to one of the supported
asymmetric private key types.
:param data: The PEM encoded key data.
:type data: :term:`bytes-like`
:param password: The password to use to decrypt the data. Should
be ``None`` if the private key is not encrypted.
:type password: :term:`bytes-like`
:param unsafe_skip_rsa_key_validation:
.. versionadded:: 39.0.0
A keyword-only argument that defaults to ``False``. If ``True``
RSA private keys will not be validated. This significantly speeds up
loading the keys, but is :term:`unsafe` unless you are certain the
key is valid. User supplied keys should never be loaded with this
parameter set to ``True``. If you do load an invalid key this way and
attempt to use it OpenSSL may hang, crash, or otherwise misbehave.
:type unsafe_skip_rsa_key_validation: bool
:returns: One of
:class:`~cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.x25519.X25519PrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.ed448.Ed448PrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.x448.X448PrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.dh.DHPrivateKey`,
or
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey`
depending on the contents of ``data``.
:raises ValueError: If the PEM data could not be decrypted or if its
structure could not be decoded successfully.
:raises TypeError: If a ``password`` was given and the private key was
not encrypted. Or if the key was encrypted but no
password was supplied.
:raises cryptography.exceptions.UnsupportedAlgorithm: If the serialized key
type is not supported by the OpenSSL version ``cryptography`` is using.
.. function:: load_pem_public_key(data)
.. versionadded:: 0.6
Deserialize a public key from PEM encoded data to one of the supported
asymmetric public key types. The PEM encoded data is typically a
``subjectPublicKeyInfo`` payload as specified in :rfc:`5280`.
.. doctest::
>>> from cryptography.hazmat.primitives.serialization import load_pem_public_key
>>> key = load_pem_public_key(public_pem_data)
>>> isinstance(key, rsa.RSAPublicKey)
True
:param bytes data: The PEM encoded key data.
:returns: One of
:class:`~cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.x25519.X25519PublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.ed448.Ed448PublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.x448.X448PublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.dh.DHPublicKey`,
or
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey`
depending on the contents of ``data``.
:raises ValueError: If the PEM data's structure could not be decoded
successfully.
:raises cryptography.exceptions.UnsupportedAlgorithm: If the serialized key
type is not supported by the OpenSSL version ``cryptography`` is using.
.. function:: load_pem_parameters(data)
.. versionadded:: 2.0
Deserialize parameters from PEM encoded data to one of the supported
asymmetric parameters types.
.. doctest::
>>> from cryptography.hazmat.primitives.serialization import load_pem_parameters
>>> from cryptography.hazmat.primitives.asymmetric import dh
>>> parameters = load_pem_parameters(parameters_pem_data)
>>> isinstance(parameters, dh.DHParameters)
True
:param bytes data: The PEM encoded parameters data.
:returns: Currently only
:class:`~cryptography.hazmat.primitives.asymmetric.dh.DHParameters`
supported.
:raises ValueError: If the PEM data's structure could not be decoded
successfully.
:raises cryptography.exceptions.UnsupportedAlgorithm: If the serialized key
type is not supported by the OpenSSL version ``cryptography`` is using.
DER
~~~
DER is an ASN.1 encoding type. There are no encapsulation boundaries and the
data is binary. DER keys may be in a variety of formats, but as long as you
know whether it is a public or private key the loading functions will handle
the rest.
.. function:: load_der_private_key(data, password, *, unsafe_skip_rsa_key_validation=False)
.. versionadded:: 0.8
Deserialize a private key from DER encoded data to one of the supported
asymmetric private key types.
:param data: The DER encoded key data.
:type data: :term:`bytes-like`
:param password: The password to use to decrypt the data. Should
be ``None`` if the private key is not encrypted.
:type password: :term:`bytes-like`
:param unsafe_skip_rsa_key_validation:
.. versionadded:: 39.0.0
A keyword-only argument that defaults to ``False``. If ``True``
RSA private keys will not be validated. This significantly speeds up
loading the keys, but is :term:`unsafe` unless you are certain the
key is valid. User supplied keys should never be loaded with this
parameter set to ``True``. If you do load an invalid key this way and
attempt to use it OpenSSL may hang, crash, or otherwise misbehave.
:type unsafe_skip_rsa_key_validation: bool
:returns: One of
:class:`~cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.x25519.X25519PrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.ed448.Ed448PrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.x448.X448PrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.dh.DHPrivateKey`,
or
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey`
depending on the contents of ``data``.
:raises ValueError: If the DER data could not be decrypted or if its
structure could not be decoded successfully.
:raises TypeError: If a ``password`` was given and the private key was
not encrypted. Or if the key was encrypted but no
password was supplied.
:raises cryptography.exceptions.UnsupportedAlgorithm: If the serialized key
type is not supported by the OpenSSL version ``cryptography`` is using.
.. doctest::
>>> from cryptography.hazmat.primitives.asymmetric import rsa
>>> from cryptography.hazmat.primitives.serialization import load_der_private_key
>>> key = load_der_private_key(der_data, password=None)
>>> isinstance(key, rsa.RSAPrivateKey)
True
.. function:: load_der_public_key(data)
.. versionadded:: 0.8
Deserialize a public key from DER encoded data to one of the supported
asymmetric public key types. The DER encoded data is typically a
``subjectPublicKeyInfo`` payload as specified in :rfc:`5280`.
:param bytes data: The DER encoded key data.
:returns: One of
:class:`~cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.x25519.X25519PublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.ed448.Ed448PublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.x448.X448PublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.dh.DHPublicKey`,
or
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey`
depending on the contents of ``data``.
:raises ValueError: If the DER data's structure could not be decoded
successfully.
:raises cryptography.exceptions.UnsupportedAlgorithm: If the serialized key
type is not supported by the OpenSSL version ``cryptography`` is using.
.. doctest::
>>> from cryptography.hazmat.primitives.asymmetric import rsa
>>> from cryptography.hazmat.primitives.serialization import load_der_public_key
>>> key = load_der_public_key(public_der_data)
>>> isinstance(key, rsa.RSAPublicKey)
True
.. function:: load_der_parameters(data)
.. versionadded:: 2.0
Deserialize parameters from DER encoded data to one of the supported
asymmetric parameters types.
:param bytes data: The DER encoded parameters data.
:returns: Currently only
:class:`~cryptography.hazmat.primitives.asymmetric.dh.DHParameters`
supported.
:raises ValueError: If the DER data's structure could not be decoded
successfully.
:raises cryptography.exceptions.UnsupportedAlgorithm: If the serialized key
type is not supported by the OpenSSL version ``cryptography`` is using.
.. doctest::
>>> from cryptography.hazmat.primitives.asymmetric import dh
>>> from cryptography.hazmat.primitives.serialization import load_der_parameters
>>> parameters = load_der_parameters(parameters_der_data)
>>> isinstance(parameters, dh.DHParameters)
True
OpenSSH Public Key
~~~~~~~~~~~~~~~~~~
The format used by OpenSSH to store public keys, as specified in :rfc:`4253`.
An example RSA key in OpenSSH format (line breaks added for formatting
purposes)::
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDDu/XRP1kyK6Cgt36gts9XAk
FiiuJLW6RU0j3KKVZSs1I7Z3UmU9/9aVh/rZV43WQG8jaR6kkcP4stOR0DEtll
PDA7ZRBnrfiHpSQYQ874AZaAoIjgkv7DBfsE6gcDQLub0PFjWyrYQUJhtOLQEK
vY/G0vt2iRL3juawWmCFdTK3W3XvwAdgGk71i6lHt+deOPNEPN2H58E4odrZ2f
sxn/adpDqfb2sM0kPwQs0aWvrrKGvUaustkivQE4XWiSFnB0oJB/lKK/CKVKuy
///ImSCGHQRvhwariN2tvZ6CBNSLh3iQgeB0AkyJlng7MXB2qYq/Ci2FUOryCX
2MzHvnbv testkey@localhost
DSA keys look almost identical but begin with ``ssh-dss`` rather than
``ssh-rsa``. ECDSA keys have a slightly different format, they begin with
``ecdsa-sha2-{curve}``.
.. data:: SSHPublicKeyTypes
.. versionadded:: 40.0.0
Type alias: A union of public key types accepted for SSH:
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey`
, or
:class:`~cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey`.
.. function:: load_ssh_public_key(data)
.. versionadded:: 0.7
.. note::
SSH DSA key support is deprecated and will be removed in a future
release.
Deserialize a public key from OpenSSH (:rfc:`4253` and
`PROTOCOL.certkeys`_) encoded data to an
instance of the public key type.
:param data: The OpenSSH encoded key data.
:type data: :term:`bytes-like`
:returns: One of :data:`SSHPublicKeyTypes` depending on the contents of
``data``.
:raises ValueError: If the OpenSSH data could not be properly decoded or
if the key is not in the proper format.
:raises cryptography.exceptions.UnsupportedAlgorithm: If the serialized
key is of a type that is not supported.
OpenSSH Private Key
~~~~~~~~~~~~~~~~~~~
The format used by OpenSSH to store private keys, as approximately specified
in `PROTOCOL.key`_.
An example ECDSA key in OpenSSH format::
-----BEGIN OPENSSH PRIVATE KEY-----
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAaAAAABNlY2RzYS
1zaGEyLW5pc3RwMjU2AAAACG5pc3RwMjU2AAAAQQRI0fWnI1CxX7qYqp0ih6bxjhGmUrZK
/Axf8vhM8Db3oH7CFR+JdL715lUdu4XCWvQZKVf60/h3kBFhuxQC23XjAAAAqKPzVaOj81
WjAAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEjR9acjULFfupiq
nSKHpvGOEaZStkr8DF/y+EzwNvegfsIVH4l0vvXmVR27hcJa9BkpV/rT+HeQEWG7FALbde
MAAAAga/VGV2asRlL3kXXao0aochQ59nXHA2xEGeAoQd952r0AAAAJbWFya29AdmZmAQID
BAUGBw==
-----END OPENSSH PRIVATE KEY-----
.. data:: SSHPrivateKeyTypes
.. versionadded:: 40.0.0
Type alias: A union of private key types accepted for SSH:
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey`
or
:class:`~cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PrivateKey`.
.. function:: load_ssh_private_key(data, password)
.. versionadded:: 3.0
.. note::
SSH DSA key support is deprecated and will be removed in a future
release.
Deserialize a private key from OpenSSH encoded data to an
instance of the private key type.
:param data: The PEM encoded OpenSSH private key data.
:type data: :term:`bytes-like`
:param bytes password: Password bytes to use to decrypt
password-protected key. Or ``None`` if not needed.
:returns: One of :data:`SSHPrivateKeyTypes` depending on the contents of
``data``.
:raises ValueError: If the OpenSSH data could not be properly decoded,
if the key is not in the proper format or the incorrect password
was provided.
:raises cryptography.exceptions.UnsupportedAlgorithm: If the serialized
key is of a type that is not supported.
OpenSSH Certificate
~~~~~~~~~~~~~~~~~~~
The format used by OpenSSH for certificates, as specified in
`PROTOCOL.certkeys`_.
.. data:: SSHCertPublicKeyTypes
.. versionadded:: 40.0.0
Type alias: A union of public key types supported for SSH
certificates:
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey`
or
:class:`~cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey`
.. data:: SSHCertPrivateKeyTypes
.. versionadded:: 40.0.0
Type alias: A union of private key types supported for SSH
certificates:
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey`
or
:class:`~cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PrivateKey`
.. function:: load_ssh_public_identity(data)
.. versionadded:: 40.0.0
.. note::
This function does not support parsing certificates with DSA public
keys or signatures from DSA certificate authorities. DSA is a
deprecated algorithm and should not be used.
Deserialize an OpenSSH encoded identity to an instance of
:class:`SSHCertificate` or the appropriate public key type.
Parsing a certificate does not verify anything. It is up to the caller to
perform any necessary verification.
:param data: The OpenSSH encoded data.
:type data: bytes
:returns: :class:`SSHCertificate` or one of :data:`SSHCertPublicKeyTypes`.
:raises ValueError: If the OpenSSH data could not be properly decoded.
:raises cryptography.exceptions.UnsupportedAlgorithm: If the data contains
a public key type that is not supported.
.. class:: SSHCertificate
.. versionadded:: 40.0.0
.. attribute:: nonce
:type: bytes
The nonce field is a CA-provided random value of arbitrary length
(but typically 16 or 32 bytes) included to make attacks that depend on
inducing collisions in the signature hash infeasible.
.. method:: public_key()
The public key contained in the certificate, one of
:data:`SSHCertPublicKeyTypes`.
.. attribute:: serial
:type: int
Serial is an optional certificate serial number set by the CA to
provide an abbreviated way to refer to certificates from that CA.
If a CA does not wish to number its certificates, it must set this
field to zero.
.. attribute:: type
:type: :class:`SSHCertificateType`
Type specifies whether this certificate is for identification of a user
or a host.
.. attribute:: key_id
:type: bytes
This is a free-form text field that is filled in by the CA at the time
of signing; the intention is that the contents of this field are used to
identify the identity principal in log messages.
.. attribute:: valid_principals
:type: list[bytes]
"valid principals" is a list containing one or more principals as
byte strings. These principals list the names for which this
certificate is valid; hostnames for host certificates and
usernames for user certificates. As a special case, an
empty list means the certificate is valid for any principal of
the specified type.
.. attribute:: valid_after
:type: int
An integer representing the Unix timestamp (in UTC) after which the
certificate is valid. **This time is inclusive.**
.. attribute:: valid_before
:type: int
An integer representing the Unix timestamp (in UTC) before which the
certificate is valid. **This time is not inclusive.**
.. attribute:: critical_options
:type: dict[bytes, bytes]
Critical options is a dict of zero or more options that are
critical for the certificate to be considered valid. If
any of these options are not supported by the implementation, the
certificate must be rejected.
.. attribute:: extensions
:type: dict[bytes, bytes]
Extensions is a dict of zero or more options that are
non-critical for the certificate to be considered valid. If any of
these options are not supported by the implementation, the
implementation may safely ignore them.
.. method:: signature_key()
The public key used to sign the certificate, one of
:data:`SSHCertPublicKeyTypes`.
.. method:: verify_cert_signature()
.. warning::
This method does not validate anything about whether the
signing key is trusted! Callers are responsible for validating
trust in the signer.
Validates that the signature on the certificate was created by
the private key associated with the certificate's signature key
and that the certificate has not been changed since signing.
:return: None
:raises: :class:`~cryptography.exceptions.InvalidSignature` if the
signature is invalid.
.. method:: public_bytes()
:return: The serialized certificate in OpenSSH format.
:rtype: bytes
.. class:: SSHCertificateType
.. versionadded:: 40.0.0
An enumeration of the types of SSH certificates.
.. attribute:: USER
The cert is intended for identification of a user. Corresponds to the
value ``1``.
.. attribute:: HOST
The cert is intended for identification of a host. Corresponds to the
value ``2``.
SSH Certificate Builder
~~~~~~~~~~~~~~~~~~~~~~~
.. class:: SSHCertificateBuilder
.. versionadded:: 40.0.0
.. note::
This builder does not support generating certificates with DSA public
keys or creating signatures with DSA certificate authorities. DSA is a
deprecated algorithm and should not be used.
.. doctest::
>>> import datetime
>>> from cryptography.hazmat.primitives.asymmetric import ec
>>> from cryptography.hazmat.primitives.serialization import (
... SSHCertificateType, SSHCertificateBuilder
... )
>>> signing_key = ec.generate_private_key(ec.SECP256R1())
>>> public_key = ec.generate_private_key(ec.SECP256R1()).public_key()
>>> valid_after = datetime.datetime(
... 2023, 1, 1, 1, tzinfo=datetime.timezone.utc
... ).timestamp()
>>> valid_before = datetime.datetime(
... 2023, 7, 1, 1, tzinfo=datetime.timezone.utc
... ).timestamp()
>>> key_id = b"a_key_id"
>>> valid_principals = [b"eve", b"alice"]
>>> builder = (
... SSHCertificateBuilder()
... .public_key(public_key)
... .type(SSHCertificateType.USER)
... .valid_before(valid_before)
... .valid_after(valid_after)
... .key_id(b"a_key_id")
... .valid_principals(valid_principals)
... .add_extension(b"no-touch-required", b"")
... )
>>> builder.sign(signing_key).public_bytes()
b'...'
.. method:: public_key(public_key)
:param public_key: The public key to be included in the certificate.
This value is required.
:type public_key: :data:`SSHCertPublicKeyTypes`
.. method:: serial(serial)
:param int serial: The serial number to be included in the certificate.
This is not a required value and will be set to zero if not
provided. Value must be between 0 and 2:sup:`64` - 1, inclusive.
.. method:: type(type)
:param type: The type of the certificate. There are two options,
user or host.
:type type: :class:`SSHCertificateType`
.. method:: key_id(key_id)
:param key_id: The key ID to be included in the certificate. This is
not a required value.
:type key_id: bytes
.. method:: valid_principals(valid_principals)
:param valid_principals: A list of principals that the certificate is
valid for. This is a required value unless
:meth:`valid_for_all_principals` has been called.
:type valid_principals: list[bytes]
.. method:: valid_for_all_principals()
Marks the certificate as valid for all principals. This cannot be
set if principals have been added via :meth:`valid_principals`.
.. method:: valid_after(valid_after)
:param int valid_after: The Unix timestamp (in UTC) that marks the
activation time for the certificate. This is a required value.
.. method:: valid_before(valid_before)
:param int valid_before: The Unix timestamp (in UTC) that marks the
expiration time for the certificate. This is a required value.
.. method:: add_critical_option(name, value)
:param name: The name of the critical option to add. No duplicates
are allowed.
:type name: bytes
:param value: The value of the critical option to add. This is
commonly an empty byte string.
:type value: bytes
.. method:: add_extension(name, value)
:param name: The name of the extension to add. No duplicates are
allowed.
:type name: bytes
:param value: The value of the extension to add.
:type value: bytes
.. method:: sign(private_key)
:param private_key: The private key that will be used to sign the
certificate.
:type private_key: :data:`SSHCertPrivateKeyTypes`
:return: The signed certificate.
:rtype: :class:`SSHCertificate`
PKCS12
~~~~~~
.. currentmodule:: cryptography.hazmat.primitives.serialization.pkcs12
PKCS12 is a binary format described in :rfc:`7292`. It can contain
certificates, keys, and more. PKCS12 files commonly have a ``pfx`` or ``p12``
file suffix.
.. note::
``cryptography`` only supports a single private key and associated
certificates when parsing PKCS12 files at this time.
.. data:: PKCS12PrivateKeyTypes
.. versionadded:: 40.0.0
Type alias: A union of private key types supported for PKCS12
serialization:
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`
,
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey`
,
:class:`~cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PrivateKey`
,
:class:`~cryptography.hazmat.primitives.asymmetric.ed448.Ed448PrivateKey`
or
:class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey`.
.. function:: load_key_and_certificates(data, password)
.. versionadded:: 2.5
Deserialize a PKCS12 blob.
:param data: The binary data.
:type data: :term:`bytes-like`
:param password: The password to use to decrypt the data. ``None``
if the PKCS12 is not encrypted.
:type password: :term:`bytes-like`
:returns: A tuple of
``(private_key, certificate, additional_certificates)``.
``private_key`` is a private key type or ``None``, ``certificate``
is either the :class:`~cryptography.x509.Certificate` whose public key
matches the private key in the PKCS 12 object or ``None``, and
``additional_certificates`` is a list of all other
:class:`~cryptography.x509.Certificate` instances in the PKCS12 object.
.. function:: load_pkcs12(data, password)
.. versionadded:: 36.0.0
Deserialize a PKCS12 blob, and return a
:class:`~cryptography.hazmat.primitives.serialization.pkcs12.PKCS12KeyAndCertificates`
instance.
:param data: The binary data.
:type data: :term:`bytes-like`
:param password: The password to use to decrypt the data. ``None``
if the PKCS12 is not encrypted.
:type password: :term:`bytes-like`
:returns: A
:class:`~cryptography.hazmat.primitives.serialization.pkcs12.PKCS12KeyAndCertificates`
instance.
.. function:: serialize_key_and_certificates(name, key, cert, cas, encryption_algorithm)
.. versionadded:: 3.0
.. note::
With OpenSSL 3.0.0+ the defaults for encryption when serializing PKCS12
have changed and some versions of Windows and macOS will not be able to
read the new format. Maximum compatibility can be achieved by using
``SHA1`` for MAC algorithm and
:attr:`~cryptography.hazmat.primitives.serialization.pkcs12.PBES.PBESv1SHA1And3KeyTripleDESCBC`
for encryption algorithm as seen in the example below. However, users
should avoid this unless required for compatibility.
.. warning::
PKCS12 encryption is typically not secure and should not be used as a
security mechanism. Wrap a PKCS12 blob in a more secure envelope if you
need to store or send it safely.
Serialize a PKCS12 blob.
.. note::
Due to `a bug in Firefox`_ it's not possible to load unencrypted PKCS12
blobs in Firefox.
:param name: The friendly name to use for the supplied certificate and key.
:type name: bytes
:param key: The private key to include in the structure.
:type key: :data:`PKCS12PrivateKeyTypes`
:param cert: The certificate associated with the private key.
:type cert: :class:`~cryptography.x509.Certificate` or ``None``
:param cas: An optional set of certificates to also include in the structure.
If a :class:`~cryptography.hazmat.primitives.serialization.pkcs12.PKCS12Certificate`
is given, its friendly name will be serialized.
:type cas: ``None``, or list of
:class:`~cryptography.x509.Certificate`
or
:class:`~cryptography.hazmat.primitives.serialization.pkcs12.PKCS12Certificate`
:param encryption_algorithm: The encryption algorithm that should be used
for the key and certificate. An instance of an object conforming to the
:class:`~cryptography.hazmat.primitives.serialization.KeySerializationEncryption`
interface. PKCS12 encryption is typically **very weak** and should not
be used as a security boundary.
:return bytes: Serialized PKCS12.
.. doctest::
>>> from cryptography import x509
>>> from cryptography.hazmat.primitives.serialization import BestAvailableEncryption, load_pem_private_key, pkcs12
>>> cert = x509.load_pem_x509_certificate(ca_cert)
>>> key = load_pem_private_key(ca_key, None)
>>> p12 = pkcs12.serialize_key_and_certificates(
... b"friendlyname", key, cert, None, BestAvailableEncryption(b"password")
... )
This example uses an ``encryption_builder()`` to create a PKCS12 with more
compatible, but substantially less secure, encryption.
.. doctest::
>>> from cryptography import x509
>>> from cryptography.hazmat.primitives import hashes
>>> from cryptography.hazmat.primitives.serialization import PrivateFormat, load_pem_private_key, pkcs12
>>> encryption = (
... PrivateFormat.PKCS12.encryption_builder().
... kdf_rounds(50000).
... key_cert_algorithm(pkcs12.PBES.PBESv1SHA1And3KeyTripleDESCBC).
... hmac_hash(hashes.SHA1()).build(b"my password")
... )
>>> cert = x509.load_pem_x509_certificate(ca_cert)
>>> key = load_pem_private_key(ca_key, None)
>>> p12 = pkcs12.serialize_key_and_certificates(
... b"friendlyname", key, cert, None, encryption
... )
.. class:: PKCS12Certificate
.. versionadded:: 36.0.0
Represents additional data provided for a certificate in a PKCS12 file.
.. attribute:: certificate
A :class:`~cryptography.x509.Certificate` instance.
.. attribute:: friendly_name
:type: bytes or None
An optional byte string containing the friendly name of the certificate.
.. class:: PKCS12KeyAndCertificates
.. versionadded:: 36.0.0
A simplified representation of a PKCS12 file.
.. attribute:: key
An optional private key belonging to
:attr:`~cryptography.hazmat.primitives.serialization.pkcs12.PKCS12KeyAndCertificates.cert`
(see :data:`PKCS12PrivateKeyTypes`).
.. attribute:: cert
An optional
:class:`~cryptography.hazmat.primitives.serialization.pkcs12.PKCS12Certificate`
instance belonging to the private key
:attr:`~cryptography.hazmat.primitives.serialization.pkcs12.PKCS12KeyAndCertificates.key`.
.. attribute:: additional_certs
A list of :class:`~cryptography.hazmat.primitives.serialization.pkcs12.PKCS12Certificate`
instances.
.. class:: PBES
:canonical: cryptography.hazmat.primitives._serialization.PBES
.. versionadded:: 38.0.0
An enumeration of password-based encryption schemes used in PKCS12. These
values are used with
:class:`~cryptography.hazmat.primitives.serialization.KeySerializationEncryptionBuilder`.
.. attribute:: PBESv1SHA1And3KeyTripleDESCBC
PBESv1 using SHA1 as the KDF PRF and 3-key triple DES-CBC as the cipher.
.. attribute:: PBESv2SHA256AndAES256CBC
PBESv2 using SHA256 as the KDF PRF and AES256-CBC as the cipher. This
is only supported on OpenSSL 3.0.0 or newer.
PKCS7
~~~~~
.. currentmodule:: cryptography.hazmat.primitives.serialization.pkcs7
PKCS7 is a format described in :rfc:`2315`, among other specifications. It can
contain certificates, CRLs, and much more. PKCS7 files commonly have a ``p7b``,
``p7m``, or ``p7s`` file suffix but other suffixes are also seen in the wild.
.. note::
``cryptography`` only supports parsing certificates from PKCS7 files at
this time.
.. data:: PKCS7HashTypes
.. versionadded:: 40.0.0
Type alias: A union of hash types supported for PKCS7 serialization:
:class:`~cryptography.hazmat.primitives.hashes.SHA1`,
:class:`~cryptography.hazmat.primitives.hashes.SHA224`,
:class:`~cryptography.hazmat.primitives.hashes.SHA256`,
:class:`~cryptography.hazmat.primitives.hashes.SHA384`, or
:class:`~cryptography.hazmat.primitives.hashes.SHA512`.
.. data:: PKCS7PrivateKeyTypes
.. versionadded:: 40.0.0
Type alias: A union of private key types supported for PKCS7 serialization:
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey` or
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey`
.. function:: load_pem_pkcs7_certificates(data)
.. versionadded:: 3.1
Deserialize a PEM encoded PKCS7 blob to a list of certificates. PKCS7 can
contain many other types of data, including CRLs, but this function will
ignore everything except certificates.
:param data: The data.
:type data: bytes
:returns: A list of :class:`~cryptography.x509.Certificate`.
:raises ValueError: If the PKCS7 data could not be loaded.
:raises cryptography.exceptions.UnsupportedAlgorithm: If the PKCS7 data
is of a type that is not supported.
.. function:: load_der_pkcs7_certificates(data)
.. versionadded:: 3.1
Deserialize a DER encoded PKCS7 blob to a list of certificates. PKCS7 can
contain many other types of data, including CRLs, but this function will
ignore everything except certificates.
:param data: The data.
:type data: bytes
:returns: A list of :class:`~cryptography.x509.Certificate`.
:raises ValueError: If the PKCS7 data could not be loaded.
:raises cryptography.exceptions.UnsupportedAlgorithm: If the PKCS7 data
is of a type that is not supported.
.. function:: serialize_certificates(certs, encoding)
.. versionadded:: 37.0.0
Serialize a list of certificates to a PKCS7 structure.
:param certs: A list of :class:`~cryptography.x509.Certificate`.
:param encoding: :attr:`~cryptography.hazmat.primitives.serialization.Encoding.PEM`
or :attr:`~cryptography.hazmat.primitives.serialization.Encoding.DER`.
:returns bytes: The serialized PKCS7 data.
.. testsetup::
ca_key = b"""
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgA8Zqz5vLeR0ePZUe
jBfdyMmnnI4U5uAJApWTsMn/RuWhRANCAAQY/8+7+Tm49d3D7sBAiwZ1BqtPzdgs
UiROH+AQRme1XxW5Yr07zwxvvhr3tKEPtLnLboazUPlsUb/Bgte+xfkF
-----END PRIVATE KEY-----
""".strip()
ca_cert = b"""
-----BEGIN CERTIFICATE-----
MIIBUTCB96ADAgECAgIDCTAKBggqhkjOPQQDAjAnMQswCQYDVQQGEwJVUzEYMBYG
A1UEAwwPY3J5cHRvZ3JhcGh5IENBMB4XDTE3MDEwMTEyMDEwMFoXDTM4MTIzMTA4
MzAwMFowJzELMAkGA1UEBhMCVVMxGDAWBgNVBAMMD2NyeXB0b2dyYXBoeSBDQTBZ
MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBj/z7v5Obj13cPuwECLBnUGq0/N2CxS
JE4f4BBGZ7VfFblivTvPDG++Gve0oQ+0uctuhrNQ+WxRv8GC177F+QWjEzARMA8G
A1UdEwEB/wQFMAMBAf8wCgYIKoZIzj0EAwIDSQAwRgIhANES742XWm64tkGnz8Dn
pG6u2lHkZFQr3oaVvPcemvlbAiEA0WGGzmYx5C9UvfXIK7NEziT4pQtyESE0uRVK
Xw4nMqk=
-----END CERTIFICATE-----
""".strip()
ca_cert_rsa = b"""
-----BEGIN CERTIFICATE-----
MIIExzCCAq+gAwIBAgIJAOcS06ClbtbJMA0GCSqGSIb3DQEBCwUAMBoxGDAWBgNV
BAMMD2NyeXB0b2dyYXBoeSBDQTAeFw0yMDA5MTQyMTQwNDJaFw00ODAxMzEyMTQw
NDJaMBoxGDAWBgNVBAMMD2NyeXB0b2dyYXBoeSBDQTCCAiIwDQYJKoZIhvcNAQEB
BQADggIPADCCAgoCggIBANBIheRc1HT4MzV5GvUbDk9CFU6DTomRApNqRmizriRq
m6OY4Ht3d71BXog6/IBkqAnZ4/XJQ40G4sVDb52k11oPvfJ/F5pc+6UqPBL+QGzY
GkJoubAqXFpI6ow0qayFNQLv0T9o4yh0QQOoGvgCmv91qmitLrZNXu4U9S76G+Di
GST+QyMkMxj+VsGRsRRBufV1urcnvFWjU6Q2+cr2cp0mMAG96NTyIskYiJ8vL03W
z4DX4klO4X47fPmDnU/OMn4SbvMZ896j1L0J04S+uVThTkxQWcFcqXhX5qM8kzcj
JUmybFlbf150j3WiucW48K/j7fJ0x9q3iUo4Gva0coScglJWcgo/BBCwFDw8NVba
7npxSRMiaS3qTv0dEFcRnvByc+7hyGxxlWdTE9tHisUI1eZVk9P9ziqNOZKscY8Z
X1+/C4M9X69Y7A8I74F5dO27IRycEgOrSo2z1NhfSwbqJr9a2TBtRsFinn8rjKBI
zNn0E5p9jO1WjxtkcjHfXXpLN8FFMvoYI9l/K+ZWDm9sboaF8jrgozSc004AFemA
H79mmCGVRKXn1vDAo4DLC6p3NiBFYQcYbW9V+beGD6srsF6xJtuY/UwtPROLWSzu
CCrZ/4BlmpNsR0ehIFFvzEKjX6rR2yp3YKlguDbMBMKMpfSGxAFwcZ7OiaxR20UH
AgMBAAGjEDAOMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggIBADSveDS4
y2V/N6Li2n9ChGNdCMr/45M0cl+GpL55aA36AWYMRLv0wip7MWV3yOj4mkjGBlTE
awKHH1FtetsE6B4a7M2hHhOXyXE60uUdptEx6ckGrJ1iyqu5cQUX1P+VnXbmOxfF
bl+Ugzjbgirx239rA4ezkDRuOvKcCbDOFV/gw3ZHfJ/IQeRXIQRl/y51wcnFUvFM
JEESYiijeDbEcY8r1/phmVQL0CO7WLMmTxlFj4X/TR3MTZWJQIap9GiLs5+n3QiO
jsZ3GuFOomB8oTebYkXniwbNu5hgLP/seRQzGA7B9VDZryAhCtvGgjtQh0eW2Qxt
sgmDJGOPKnKT3O5U0v3+IPLEYpe8JSzgAhhh6H1rAJRUNwP2gRcO4eOUJSkdl218
fRNT0ILzosuWxwprER9ciMQF8q0JJKMhcfHRMH0S5mWVJAIkj68KY05oCy2zNyYa
oruopKSWXe0Bzr40znm40P7xIkui2BGQMlDPpbCaEfLsLqyctfbdmMlxac/QgIfY
TltrbqmI3MNy5uqGViGFpWPCB+kD8EsJF9nlKJXlu/i55qgUr/2/2CdeWlZDBP8A
1fdzmpYpWnwhE0KobzLS2z3AwDxiY/RSWUfypLZA0K/lpaEtYB6UHMDZ0/8WqgZV
gNucCuty0cA4Kf7eX1TlAKVwH8hTkVmJc2rX
-----END CERTIFICATE-----
""".strip()
.. class:: PKCS7SignatureBuilder
The PKCS7 signature builder can create both basic PKCS7 signed messages as
well as S/MIME messages, which are commonly used in email. S/MIME has
multiple versions, but this implements a subset of :rfc:`2632`, also known
as S/MIME Version 3.
.. versionadded:: 3.2
.. doctest::
>>> from cryptography import x509
>>> from cryptography.hazmat.primitives import hashes, serialization
>>> from cryptography.hazmat.primitives.serialization import pkcs7
>>> cert = x509.load_pem_x509_certificate(ca_cert)
>>> key = serialization.load_pem_private_key(ca_key, None)
>>> options = [pkcs7.PKCS7Options.DetachedSignature]
>>> pkcs7.PKCS7SignatureBuilder().set_data(
... b"data to sign"
... ).add_signer(
... cert, key, hashes.SHA256()
... ).sign(
... serialization.Encoding.SMIME, options
... )
b'...'
.. method:: set_data(data)
:param data: The data to be hashed and signed.
:type data: :term:`bytes-like`
.. method:: add_signer(certificate, private_key, hash_algorithm, *, rsa_padding=None)
:param certificate: The :class:`~cryptography.x509.Certificate`.
:param private_key: The
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey` or
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey`
associated with the certificate provided
(matches :data:`PKCS7PrivateKeyTypes`).
:param hash_algorithm: The
:class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` that
will be used to generate the signature. This must be one of the
types in :data:`PKCS7HashTypes`.
:param rsa_padding:
.. versionadded:: 42.0.0
This is a keyword-only argument. If ``private_key`` is an
``RSAPrivateKey`` then this can be set to either
:class:`~cryptography.hazmat.primitives.asymmetric.padding.PKCS1v15` or
:class:`~cryptography.hazmat.primitives.asymmetric.padding.PSS` to sign
with those respective paddings. If this is ``None`` then RSA
keys will default to ``PKCS1v15`` padding. All other key types **must**
not pass a value other than ``None``.
.. method:: add_certificate(certificate)
Add an additional certificate (typically used to help build a
verification chain) to the PKCS7 structure. This method may
be called multiple times to add as many certificates as desired.
:param certificate: The :class:`~cryptography.x509.Certificate` to add.
.. method:: sign(encoding, options)
:param encoding: :attr:`~cryptography.hazmat.primitives.serialization.Encoding.PEM`,
:attr:`~cryptography.hazmat.primitives.serialization.Encoding.DER`,
or :attr:`~cryptography.hazmat.primitives.serialization.Encoding.SMIME`.
:param options: A list of
:class:`~cryptography.hazmat.primitives.serialization.pkcs7.PKCS7Options`.
:returns bytes: The signed PKCS7 message.
.. class:: PKCS7EnvelopeBuilder
The PKCS7 envelope builder can create encrypted S/MIME messages,
which are commonly used in email. S/MIME has multiple versions,
but this implements a subset of :rfc:`5751`, also known as S/MIME
Version 3.2.
.. versionadded:: 43.0.0
.. doctest::
>>> from cryptography import x509
>>> from cryptography.hazmat.primitives import serialization
>>> from cryptography.hazmat.primitives.serialization import pkcs7
>>> cert = x509.load_pem_x509_certificate(ca_cert_rsa)
>>> options = [pkcs7.PKCS7Options.Text]
>>> pkcs7.PKCS7EnvelopeBuilder().set_data(
... b"data to encrypt"
... ).add_recipient(
... cert
... ).encrypt(
... serialization.Encoding.SMIME, options
... )
b'...'
.. method:: set_data(data)
:param data: The data to be encrypted.
:type data: :term:`bytes-like`
.. method:: add_recipient(certificate)
Add a recipient for the message. Recipients will be able to use their private keys
to decrypt the message. This method may be called multiple times to add as many recipients
as desired.
:param certificate: A :class:`~cryptography.x509.Certificate` for an intended
recipient of the encrypted message. Only certificates with public RSA keys
are currently supported.
.. method:: encrypt(encoding, options)
The message is encrypted using AES-128-CBC. The encryption key used is included in
the envelope, encrypted using the recipient's public RSA key. If multiple recipients
are specified, the key is encrypted once with each recipient's public key, and all
encrypted keys are included in the envelope (one per recipient).
:param encoding: :attr:`~cryptography.hazmat.primitives.serialization.Encoding.PEM`,
:attr:`~cryptography.hazmat.primitives.serialization.Encoding.DER`,
or :attr:`~cryptography.hazmat.primitives.serialization.Encoding.SMIME`.
:param options: A list of
:class:`~cryptography.hazmat.primitives.serialization.pkcs7.PKCS7Options`. For
this operation only
:attr:`~cryptography.hazmat.primitives.serialization.pkcs7.PKCS7Options.Text` and
:attr:`~cryptography.hazmat.primitives.serialization.pkcs7.PKCS7Options.Binary`
are supported.
:returns bytes: The enveloped PKCS7 message.
.. class:: PKCS7Options
.. versionadded:: 3.2
An enumeration of options for PKCS7 signature and envelope creation.
.. attribute:: Text
The text option adds ``text/plain`` headers to an S/MIME message when
serializing to
:attr:`~cryptography.hazmat.primitives.serialization.Encoding.SMIME`.
This option is disallowed with ``DER`` serialization.
.. attribute:: Binary
Signing normally converts line endings (LF to CRLF). When
passing this option the data will not be converted.
.. attribute:: DetachedSignature
Don't embed the signed data within the ASN.1. When signing with
:attr:`~cryptography.hazmat.primitives.serialization.Encoding.SMIME`
this also results in the data being added as clear text before the
PEM encoded structure.
.. attribute:: NoCapabilities
PKCS7 structures contain a ``MIMECapabilities`` section inside the
``authenticatedAttributes``. Passing this as an option removes
``MIMECapabilities``.
.. attribute:: NoAttributes
PKCS7 structures contain an ``authenticatedAttributes`` section.
Passing this as an option removes that section. Note that if you
pass ``NoAttributes`` you can't pass ``NoCapabilities`` since
``NoAttributes`` removes ``MIMECapabilities`` and more.
.. attribute:: NoCerts
Don't include the signer's certificate in the PKCS7 structure. This can
reduce the size of the signature but requires that the recipient can
obtain the signer's certificate by other means (for example from a
previously signed message).
Serialization Formats
~~~~~~~~~~~~~~~~~~~~~
.. currentmodule:: cryptography.hazmat.primitives.serialization
.. class:: PrivateFormat
:canonical: cryptography.hazmat.primitives._serialization.PrivateFormat
.. versionadded:: 0.8
An enumeration for private key formats. Used with the ``private_bytes``
method available on
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`
,
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey`
, :class:`~cryptography.hazmat.primitives.asymmetric.dh.DHPrivateKey`
and
:class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey`.
.. attribute:: TraditionalOpenSSL
Frequently known as PKCS#1 format. Still a widely used format, but
generally considered legacy.
A PEM encoded RSA key will look like::
-----BEGIN RSA PRIVATE KEY-----
...
-----END RSA PRIVATE KEY-----
.. attribute:: PKCS8
A more modern format for serializing keys which allows for better
encryption. Choose this unless you have explicit legacy compatibility
requirements.
A PEM encoded key will look like::
-----BEGIN PRIVATE KEY-----
...
-----END PRIVATE KEY-----
.. attribute:: Raw
.. versionadded:: 2.5
A raw format used by :doc:`/hazmat/primitives/asymmetric/x448`. It is a
binary format and is invalid for other key types.
.. attribute:: OpenSSH
.. versionadded:: 3.0
Custom private key format for OpenSSH, internals are based on SSH protocol
and not ASN1. Requires
:attr:`~cryptography.hazmat.primitives.serialization.Encoding.PEM`
encoding.
A PEM encoded OpenSSH key will look like::
-----BEGIN OPENSSH PRIVATE KEY-----
...
-----END OPENSSH PRIVATE KEY-----
.. attribute:: PKCS12
.. versionadded:: 38.0.0
The PKCS#12 format is a binary format used to store private keys and
certificates. This attribute is used in conjunction with
``encryption_builder()`` to allow control of the encryption algorithm
and parameters.
.. doctest::
>>> from cryptography.hazmat.primitives import hashes
>>> from cryptography.hazmat.primitives.serialization import PrivateFormat, pkcs12
>>> encryption = (
... PrivateFormat.PKCS12.encryption_builder().
... kdf_rounds(50000).
... key_cert_algorithm(pkcs12.PBES.PBESv2SHA256AndAES256CBC).
... hmac_hash(hashes.SHA256()).build(b"my password")
... )
>>> p12 = pkcs12.serialize_key_and_certificates(
... b"friendlyname", key, None, None, encryption
... )
.. method:: encryption_builder()
.. versionadded:: 38.0.0
Returns a builder for configuring how values are encrypted with this
format. You must call this method on an element of the enumeration.
For example, ``PrivateFormat.OpenSSH.encryption_builder()``.
For most use cases, :class:`BestAvailableEncryption` is preferred.
:returns: A new instance of :class:`KeySerializationEncryptionBuilder`
.. doctest::
>>> from cryptography.hazmat.primitives import serialization
>>> encryption = (
... serialization.PrivateFormat.OpenSSH.encryption_builder().kdf_rounds(30).build(b"my password")
... )
>>> key.private_bytes(
... encoding=serialization.Encoding.PEM,
... format=serialization.PrivateFormat.OpenSSH,
... encryption_algorithm=encryption
... )
b'-----BEGIN OPENSSH PRIVATE KEY-----\n...\n-----END OPENSSH PRIVATE KEY-----\n'
.. class:: PublicFormat
.. versionadded:: 0.8
An enumeration for public key formats. Used with the ``public_bytes``
method available on
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey`
,
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey`
, :class:`~cryptography.hazmat.primitives.asymmetric.dh.DHPublicKey`
, and
:class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey`.
.. attribute:: SubjectPublicKeyInfo
This is the typical public key format. It consists of an algorithm
identifier and the public key as a bit string. Choose this unless
you have specific needs.
A PEM encoded key will look like::
-----BEGIN PUBLIC KEY-----
...
-----END PUBLIC KEY-----
.. attribute:: PKCS1
Just the public key elements (without the algorithm identifier). This
format is RSA only, but is used by some older systems.
A PEM encoded key will look like::
-----BEGIN RSA PUBLIC KEY-----
...
-----END RSA PUBLIC KEY-----
.. attribute:: OpenSSH
.. versionadded:: 1.4
The public key format used by OpenSSH (e.g. as found in
``~/.ssh/id_rsa.pub`` or ``~/.ssh/authorized_keys``).
.. attribute:: Raw
.. versionadded:: 2.5
A raw format used by :doc:`/hazmat/primitives/asymmetric/x448`. It is a
binary format and is invalid for other key types.
.. attribute:: CompressedPoint
.. versionadded:: 2.5
A compressed elliptic curve public key as defined in ANSI X9.62 section
4.3.6 (as well as `SEC 1 v2.0`_).
.. attribute:: UncompressedPoint
.. versionadded:: 2.5
An uncompressed elliptic curve public key as defined in ANSI X9.62
section 4.3.6 (as well as `SEC 1 v2.0`_).
.. class:: ParameterFormat
.. versionadded:: 2.0
An enumeration for parameters formats. Used with the ``parameter_bytes``
method available on
:class:`~cryptography.hazmat.primitives.asymmetric.dh.DHParameters`.
.. attribute:: PKCS3
ASN1 DH parameters sequence as defined in `PKCS3`_.
Serialization Encodings
~~~~~~~~~~~~~~~~~~~~~~~
.. class:: Encoding
:canonical: cryptography.hazmat.primitives._serialization.Encoding
An enumeration for encoding types. Used with the ``private_bytes`` method
available on
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`
,
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey`
, :class:`~cryptography.hazmat.primitives.asymmetric.dh.DHPrivateKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey`,
and
:class:`~cryptography.hazmat.primitives.asymmetric.x448.X448PrivateKey`
as well as ``public_bytes`` on
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.dh.DHPublicKey`,
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey`,
and
:class:`~cryptography.hazmat.primitives.asymmetric.x448.X448PublicKey`.
.. attribute:: PEM
.. versionadded:: 0.8
For PEM format. This is a base64 format with delimiters.
.. attribute:: DER
.. versionadded:: 0.9
For DER format. This is a binary format.
.. attribute:: OpenSSH
.. versionadded:: 1.4
The format used by OpenSSH public keys. This is a text format.
.. attribute:: Raw
.. versionadded:: 2.5
A raw format used by :doc:`/hazmat/primitives/asymmetric/x448`. It is a
binary format and is invalid for other key types.
.. attribute:: X962
.. versionadded:: 2.5
The format used by elliptic curve point encodings. This is a binary
format.
.. attribute:: SMIME
.. versionadded:: 3.2
An output format used for PKCS7. This is a text format.
Serialization Encryption Types
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. class:: KeySerializationEncryption
:canonical: cryptography.hazmat.primitives._serialization.KeySerializationEncryption
Objects with this interface are usable as encryption types with methods
like ``private_bytes`` available on
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`
,
:class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey`
, :class:`~cryptography.hazmat.primitives.asymmetric.dh.DHPrivateKey`
and
:class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey`.
All other classes in this section represent the available choices for
encryption and have this interface.
.. class:: BestAvailableEncryption(password)
:canonical: cryptography.hazmat.primitives._serialization.BestAvailableEncryption
Encrypt using the best available encryption for a given key.
This is a curated encryption choice and the algorithm may change over
time. The encryption algorithm may vary based on which version of OpenSSL
the library is compiled against.
:param bytes password: The password to use for encryption.
.. class:: NoEncryption
:canonical: cryptography.hazmat.primitives._serialization.NoEncryption
Do not encrypt.
.. class:: KeySerializationEncryptionBuilder
.. versionadded:: 38.0.0
A builder that can be used to configure how data is encrypted. To
create one, call :meth:`PrivateFormat.encryption_builder`. Different
serialization types will support different options on this builder.
.. method:: kdf_rounds(rounds)
Set the number of rounds the Key Derivation Function should use. The
meaning of the number of rounds varies on the KDF being used.
:param int rounds: Number of rounds.
.. method:: key_cert_algorithm(algorithm)
Set the encryption algorithm to use when encrypting the key and
certificate in a PKCS12 structure.
:param algorithm: A value from the :class:`~cryptography.hazmat.primitives.serialization.pkcs12.PBES`
enumeration.
.. method:: hmac_hash(algorithm)
Set the hash algorithm to use within the MAC for a PKCS12 structure.
:param algorithm: An instance of a
:class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm`
.. method:: build(password)
Turns the builder into an instance of
:class:`KeySerializationEncryption` with a given password.
:param bytes password: The password.
:returns: A :class:`KeySerializationEncryption` encryption object
that can be passed to methods like ``private_bytes`` or
:func:`~cryptography.hazmat.primitives.serialization.pkcs12.serialize_key_and_certificates`.
.. _`a bug in Firefox`: https://bugzilla.mozilla.org/show_bug.cgi?id=773111
.. _`PKCS3`: https://www.teletrust.de/fileadmin/files/oid/oid_pkcs-3v1-4.pdf
.. _`SEC 1 v2.0`: https://www.secg.org/sec1-v2.pdf
.. _`PROTOCOL.key`: https://github.com/openssh/openssh-portable/blob/master/PROTOCOL.key
.. _`PROTOCOL.certkeys`: https://github.com/openssh/openssh-portable/blob/master/PROTOCOL.certkeys
|