Alex Gaynor | 4af5b37 | 2015-07-12 10:30:59 -0500 | [diff] [blame] | 1 | X.509 Reference |
| 2 | =============== |
Paul Kehrer | 016e08a | 2014-11-26 09:41:18 -1000 | [diff] [blame] | 3 | |
Paul Kehrer | a9d78c1 | 2014-11-26 10:59:03 -1000 | [diff] [blame] | 4 | .. currentmodule:: cryptography.x509 |
Paul Kehrer | 016e08a | 2014-11-26 09:41:18 -1000 | [diff] [blame] | 5 | |
Paul Kehrer | d26c4db | 2015-03-15 15:36:24 -0500 | [diff] [blame] | 6 | .. testsetup:: |
| 7 | |
Erik Trauschke | dc57040 | 2015-09-24 20:24:28 -0700 | [diff] [blame] | 8 | pem_crl_data = b""" |
| 9 | -----BEGIN X509 CRL----- |
| 10 | MIIBtDCBnQIBAjANBgkqhkiG9w0BAQsFADAnMQswCQYDVQQGEwJVUzEYMBYGA1UE |
| 11 | AwwPY3J5cHRvZ3JhcGh5LmlvGA8yMDE1MDEwMTAwMDAwMFoYDzIwMTYwMTAxMDAw |
| 12 | MDAwWjA+MDwCAQAYDzIwMTUwMTAxMDAwMDAwWjAmMBgGA1UdGAQRGA8yMDE1MDEw |
| 13 | MTAwMDAwMFowCgYDVR0VBAMKAQEwDQYJKoZIhvcNAQELBQADggEBABRA4ww50Lz5 |
| 14 | zk1j2+aluC4HPHqb7o06h4pTDcCGeXUKXIGeP5ntGGmIoxa26sNoLeOr8+5b43Gf |
| 15 | yWraHertllOwaOpNFEe+YZFaE9femtoDbf+GLMvRx/0wDfd3KxPoXnXKMXb2d1w4 |
| 16 | RCLgmkYx6JyvS+5ciuLQVIKC+l7jwIUeZFLJMUJ8msM4pFYoGameeZmtjMbd/TNg |
| 17 | cVBfmZxNMHuLladJxvSo2esARo0TYPhYsgrREKoHwhpzSxdynjn4bOVkILfguwsN |
| 18 | qtEEMZFEv5Kb0GqRp2+Iagv2S6dg9JGvxVdsoGjaB6EbYSZ3Psx4aODasIn11uwo |
| 19 | X4B9vUQNXqc= |
| 20 | -----END X509 CRL----- |
| 21 | """.strip() |
| 22 | |
Paul Kehrer | d26c4db | 2015-03-15 15:36:24 -0500 | [diff] [blame] | 23 | pem_req_data = b""" |
| 24 | -----BEGIN CERTIFICATE REQUEST----- |
| 25 | MIIC0zCCAbsCAQAwWTELMAkGA1UEBhMCVVMxETAPBgNVBAgMCElsbGlub2lzMRAw |
| 26 | DgYDVQQHDAdDaGljYWdvMREwDwYDVQQKDAhyNTA5IExMQzESMBAGA1UEAwwJaGVs |
| 27 | bG8uY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqhZx+Mo9VRd9 |
| 28 | vsnWWa6NBCws21rZ0+1B/JGgB4hDsZS7iDE4Bj5z4idheFRtl8bBbdjPknq7BfoF |
| 29 | 8v15Zq/Zv7i2xMSDL+LUrTBZezRd4bRTGqCm6YJ5EYkhqdcqeZleHCFImguHoq1J |
| 30 | Fh0+kObQrTHXw3ZP57a3o1IvyIUA3nNoCBL0QQhwBXaDXOojMKNR+bqB5ve8GS1y |
| 31 | Elr0AM/+cJsfaIahNQUgFKx3Eu3GeEOMKYOAG1lycgdQdmTUybLrT3U7vkClTseM |
| 32 | xHg1r5En7ALjONIhqRuq3rddYahrP8HXozb3zUy3cJ7P6IeaosuvNzvMXOX9P6HD |
| 33 | Ha9urDAJ1wIDAQABoDUwMwYJKoZIhvcNAQkOMSYwJDAiBgNVHREEGzAZggl3b3Js |
| 34 | ZC5jb22CDHdoYXRldmVyLmNvbTANBgkqhkiG9w0BAQUFAAOCAQEAS4Ro6h+z52SK |
| 35 | YSLCYARpnEu/rmh4jdqndt8naqcNb6uLx9mlKZ2W9on9XDjnSdQD9q+ZP5aZfESw |
| 36 | R0+rJhW9ZrNa/g1pt6M24ihclHYDAxYMWxT1z/TXXGM3TmZZ6gfYlNE1kkBuODHa |
| 37 | UYsR/1Ht1E1EsmmUimt2n+zQR2K8T9Coa+boaUW/GsTEuz1aaJAkj5ZvTDiIhRG4 |
| 38 | AOCqFZOLAQmCCNgJnnspD9hDz/Ons085LF5wnYjN4/Nsk5tS6AGs3xjZ3jPoOGGn |
| 39 | 82WQ9m4dBGoVDZXsobVTaN592JEYwN5iu72zRn7Einb4V4H5y3yD2dD4yWPlt4pk |
| 40 | 5wFkeYsZEA== |
| 41 | -----END CERTIFICATE REQUEST----- |
| 42 | """.strip() |
| 43 | |
Paul Kehrer | d3dafbd | 2015-03-15 16:24:18 -0500 | [diff] [blame] | 44 | pem_data = b""" |
| 45 | -----BEGIN CERTIFICATE----- |
| 46 | MIIDfDCCAmSgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBFMQswCQYDVQQGEwJVUzEf |
| 47 | MB0GA1UEChMWVGVzdCBDZXJ0aWZpY2F0ZXMgMjAxMTEVMBMGA1UEAxMMVHJ1c3Qg |
| 48 | QW5jaG9yMB4XDTEwMDEwMTA4MzAwMFoXDTMwMTIzMTA4MzAwMFowQDELMAkGA1UE |
| 49 | BhMCVVMxHzAdBgNVBAoTFlRlc3QgQ2VydGlmaWNhdGVzIDIwMTExEDAOBgNVBAMT |
| 50 | B0dvb2QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCQWJpHYo37 |
| 51 | Xfb7oJSPe+WvfTlzIG21WQ7MyMbGtK/m8mejCzR6c+f/pJhEH/OcDSMsXq8h5kXa |
| 52 | BGqWK+vSwD/Pzp5OYGptXmGPcthDtAwlrafkGOS4GqIJ8+k9XGKs+vQUXJKsOk47 |
| 53 | RuzD6PZupq4s16xaLVqYbUC26UcY08GpnoLNHJZS/EmXw1ZZ3d4YZjNlpIpWFNHn |
| 54 | UGmdiGKXUPX/9H0fVjIAaQwjnGAbpgyCumWgzIwPpX+ElFOUr3z7BoVnFKhIXze+ |
| 55 | VmQGSWxZxvWDUN90Ul0tLEpLgk3OVxUB4VUGuf15OJOpgo1xibINPmWt14Vda2N9 |
| 56 | yrNKloJGZNqLAgMBAAGjfDB6MB8GA1UdIwQYMBaAFOR9X9FclYYILAWuvnW2ZafZ |
| 57 | XahmMB0GA1UdDgQWBBRYAYQkG7wrUpRKPaUQchRR9a86yTAOBgNVHQ8BAf8EBAMC |
| 58 | AQYwFwYDVR0gBBAwDjAMBgpghkgBZQMCATABMA8GA1UdEwEB/wQFMAMBAf8wDQYJ |
| 59 | KoZIhvcNAQELBQADggEBADWHlxbmdTXNwBL/llwhQqwnazK7CC2WsXBBqgNPWj7m |
| 60 | tvQ+aLG8/50Qc2Sun7o2VnwF9D18UUe8Gj3uPUYH+oSI1vDdyKcjmMbKRU4rk0eo |
| 61 | 3UHNDXwqIVc9CQS9smyV+x1HCwL4TTrq+LXLKx/qVij0Yqk+UJfAtrg2jnYKXsCu |
| 62 | FMBQQnWCGrwa1g1TphRp/RmYHnMynYFmZrXtzFz+U9XEA7C+gPq4kqDI/iVfIT1s |
| 63 | 6lBtdB50lrDVwl2oYfAvW/6sC2se2QleZidUmrziVNP4oEeXINokU6T6p//HM1FG |
| 64 | QYw2jOvpKcKtWCSAnegEbgsGYzATKjmPJPJ0npHFqzM= |
| 65 | -----END CERTIFICATE----- |
| 66 | """.strip() |
| 67 | |
Paul Kehrer | 93ae805 | 2015-05-02 23:18:09 -0500 | [diff] [blame] | 68 | cryptography_cert_pem = b""" |
| 69 | -----BEGIN CERTIFICATE----- |
| 70 | MIIFvTCCBKWgAwIBAgICPyAwDQYJKoZIhvcNAQELBQAwRzELMAkGA1UEBhMCVVMx |
| 71 | FjAUBgNVBAoTDUdlb1RydXN0IEluYy4xIDAeBgNVBAMTF1JhcGlkU1NMIFNIQTI1 |
| 72 | NiBDQSAtIEczMB4XDTE0MTAxNTEyMDkzMloXDTE4MTExNjAxMTUwM1owgZcxEzAR |
| 73 | BgNVBAsTCkdUNDg3NDI5NjUxMTAvBgNVBAsTKFNlZSB3d3cucmFwaWRzc2wuY29t |
| 74 | L3Jlc291cmNlcy9jcHMgKGMpMTQxLzAtBgNVBAsTJkRvbWFpbiBDb250cm9sIFZh |
| 75 | bGlkYXRlZCAtIFJhcGlkU1NMKFIpMRwwGgYDVQQDExN3d3cuY3J5cHRvZ3JhcGh5 |
| 76 | LmlvMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAom/FebKJIot7Sp3s |
| 77 | itG1sicpe3thCssjI+g1JDAS7I3GLVNmbms1DOdIIqwf01gZkzzXBN2+9sOnyRaR |
| 78 | PPfCe1jTr3dk2y6rPE559vPa1nZQkhlzlhMhlPyjaT+S7g4Tio4qV2sCBZU01DZJ |
| 79 | CaksfohN+5BNVWoJzTbOcrHOEJ+M8B484KlBCiSxqf9cyNQKru4W3bHaCVNVJ8eu |
| 80 | 6i6KyhzLa0L7yK3LXwwXVs583C0/vwFhccGWsFODqD/9xHUzsBIshE8HKjdjDi7Y |
| 81 | 3BFQzVUQFjBB50NSZfAA/jcdt1blxJouc7z9T8Oklh+V5DDBowgAsrT4b6Z2Fq6/ |
| 82 | r7D1GqivLK/ypUQmxq2WXWAUBb/Q6xHgxASxI4Br+CByIUQJsm8L2jzc7k+mF4hW |
| 83 | ltAIUkbo8fGiVnat0505YJgxWEDKOLc4Gda6d/7GVd5AvKrz242bUqeaWo6e4MTx |
| 84 | diku2Ma3rhdcr044Qvfh9hGyjqNjvhWY/I+VRWgihU7JrYvgwFdJqsQ5eiKT4OHi |
| 85 | gsejvWwkZzDtiQ+aQTrzM1FsY2swJBJsLSX4ofohlVRlIJCn/ME+XErj553431Lu |
| 86 | YQ5SzMd3nXzN78Vj6qzTfMUUY72UoT1/AcFiUMobgIqrrmwuNxfrkbVE2b6Bga74 |
| 87 | FsJX63prvrJ41kuHK/16RQBM7fcCAwEAAaOCAWAwggFcMB8GA1UdIwQYMBaAFMOc |
| 88 | 8/zTRgg0u85Gf6B8W/PiCMtZMFcGCCsGAQUFBwEBBEswSTAfBggrBgEFBQcwAYYT |
| 89 | aHR0cDovL2d2LnN5bWNkLmNvbTAmBggrBgEFBQcwAoYaaHR0cDovL2d2LnN5bWNi |
| 90 | LmNvbS9ndi5jcnQwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMB |
| 91 | BggrBgEFBQcDAjAvBgNVHREEKDAmghN3d3cuY3J5cHRvZ3JhcGh5Lmlvgg9jcnlw |
| 92 | dG9ncmFwaHkuaW8wKwYDVR0fBCQwIjAgoB6gHIYaaHR0cDovL2d2LnN5bWNiLmNv |
| 93 | bS9ndi5jcmwwDAYDVR0TAQH/BAIwADBFBgNVHSAEPjA8MDoGCmCGSAGG+EUBBzYw |
| 94 | LDAqBggrBgEFBQcCARYeaHR0cHM6Ly93d3cucmFwaWRzc2wuY29tL2xlZ2FsMA0G |
| 95 | CSqGSIb3DQEBCwUAA4IBAQAzIYO2jx7h17FBT74tJ2zbV9OKqGb7QF8y3wUtP4xc |
| 96 | dH80vprI/Cfji8s86kr77aAvAqjDjaVjHn7UzebhSUivvRPmfzRgyWBacomnXTSt |
| 97 | Xlt2dp2nDQuwGyK2vB7dMfKnQAkxwq1sYUXznB8i0IhhCAoXp01QGPKq51YoIlnF |
| 98 | 7DRMk6iEaL1SJbkIrLsCQyZFDf0xtfW9DqXugMMLoxeCsBhZJQzNyS2ryirrv9LH |
| 99 | aK3+6IZjrcyy9bkpz/gzJucyhU+75c4My/mnRCrtItRbCQuiI5pd5poDowm+HH9i |
| 100 | GVI9+0lAFwxOUnOnwsoI40iOoxjLMGB+CgFLKCGUcWxP |
| 101 | -----END CERTIFICATE----- |
| 102 | """.strip() |
| 103 | |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 104 | Loading Certificates |
| 105 | ~~~~~~~~~~~~~~~~~~~~ |
Paul Kehrer | 016e08a | 2014-11-26 09:41:18 -1000 | [diff] [blame] | 106 | |
| 107 | .. function:: load_pem_x509_certificate(data, backend) |
| 108 | |
| 109 | .. versionadded:: 0.7 |
| 110 | |
Paul Kehrer | e76cd27 | 2014-12-14 19:00:51 -0600 | [diff] [blame] | 111 | Deserialize a certificate from PEM encoded data. PEM certificates are |
| 112 | base64 decoded and have delimiters that look like |
| 113 | ``-----BEGIN CERTIFICATE-----``. |
Paul Kehrer | 016e08a | 2014-11-26 09:41:18 -1000 | [diff] [blame] | 114 | |
| 115 | :param bytes data: The PEM encoded certificate data. |
| 116 | |
| 117 | :param backend: A backend supporting the |
| 118 | :class:`~cryptography.hazmat.backends.interfaces.X509Backend` |
| 119 | interface. |
| 120 | |
Paul Kehrer | e76cd27 | 2014-12-14 19:00:51 -0600 | [diff] [blame] | 121 | :returns: An instance of :class:`~cryptography.x509.Certificate`. |
Paul Kehrer | 016e08a | 2014-11-26 09:41:18 -1000 | [diff] [blame] | 122 | |
| 123 | .. function:: load_der_x509_certificate(data, backend) |
| 124 | |
| 125 | .. versionadded:: 0.7 |
| 126 | |
Paul Kehrer | e76cd27 | 2014-12-14 19:00:51 -0600 | [diff] [blame] | 127 | Deserialize a certificate from DER encoded data. DER is a binary format |
Paul Kehrer | 92aac38 | 2014-12-15 16:25:28 -0600 | [diff] [blame] | 128 | and is commonly found in files with the ``.cer`` extension (although file |
| 129 | extensions are not a guarantee of encoding type). |
Paul Kehrer | 016e08a | 2014-11-26 09:41:18 -1000 | [diff] [blame] | 130 | |
| 131 | :param bytes data: The DER encoded certificate data. |
| 132 | |
| 133 | :param backend: A backend supporting the |
| 134 | :class:`~cryptography.hazmat.backends.interfaces.X509Backend` |
| 135 | interface. |
| 136 | |
Paul Kehrer | e76cd27 | 2014-12-14 19:00:51 -0600 | [diff] [blame] | 137 | :returns: An instance of :class:`~cryptography.x509.Certificate`. |
Paul Kehrer | 016e08a | 2014-11-26 09:41:18 -1000 | [diff] [blame] | 138 | |
Paul Kehrer | 016e08a | 2014-11-26 09:41:18 -1000 | [diff] [blame] | 139 | .. doctest:: |
| 140 | |
Paul Kehrer | cc8a26e | 2014-12-16 12:40:16 -0600 | [diff] [blame] | 141 | >>> from cryptography import x509 |
Paul Kehrer | 016e08a | 2014-11-26 09:41:18 -1000 | [diff] [blame] | 142 | >>> from cryptography.hazmat.backends import default_backend |
Paul Kehrer | cc8a26e | 2014-12-16 12:40:16 -0600 | [diff] [blame] | 143 | >>> cert = x509.load_pem_x509_certificate(pem_data, default_backend()) |
Paul Kehrer | 016e08a | 2014-11-26 09:41:18 -1000 | [diff] [blame] | 144 | >>> cert.serial |
| 145 | 2 |
| 146 | |
Erik Trauschke | dc57040 | 2015-09-24 20:24:28 -0700 | [diff] [blame] | 147 | Loading Certificate Revocation Lists |
| 148 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 149 | |
| 150 | .. function:: load_pem_x509_crl(data, backend) |
| 151 | |
| 152 | .. versionadded:: 1.1 |
| 153 | |
| 154 | Deserialize a certificate revocation list (CRL) from PEM encoded data. PEM |
| 155 | requests are base64 decoded and have delimiters that look like |
| 156 | ``-----BEGIN X509 CRL-----``. This format is also known as |
| 157 | PKCS#10. |
| 158 | |
| 159 | :param bytes data: The PEM encoded request data. |
| 160 | |
| 161 | :param backend: A backend supporting the |
| 162 | :class:`~cryptography.hazmat.backends.interfaces.X509Backend` |
| 163 | interface. |
| 164 | |
| 165 | :returns: An instance of |
| 166 | :class:`~cryptography.x509.CertificateRevocationList`. |
| 167 | |
| 168 | .. function:: load_der_x509_crl(data, backend) |
| 169 | |
| 170 | .. versionadded:: 1.1 |
| 171 | |
| 172 | Deserialize a certificate revocation list (CRL) from DER encoded data. DER |
| 173 | is a binary format. |
| 174 | |
| 175 | :param bytes data: The DER encoded request data. |
| 176 | |
| 177 | :param backend: A backend supporting the |
| 178 | :class:`~cryptography.hazmat.backends.interfaces.X509Backend` |
| 179 | interface. |
| 180 | |
| 181 | :returns: An instance of |
| 182 | :class:`~cryptography.x509.CertificateRevocationList`. |
| 183 | |
| 184 | .. doctest:: |
| 185 | |
| 186 | >>> from cryptography import x509 |
| 187 | >>> from cryptography.hazmat.backends import default_backend |
| 188 | >>> from cryptography.hazmat.primitives import hashes |
| 189 | >>> crl = x509.load_pem_x509_crl(pem_crl_data, default_backend()) |
| 190 | >>> isinstance(crl.signature_hash_algorithm, hashes.SHA256) |
| 191 | True |
| 192 | |
Paul Kehrer | a1a1f23 | 2015-03-15 15:34:35 -0500 | [diff] [blame] | 193 | Loading Certificate Signing Requests |
| 194 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
Paul Kehrer | dc480ad | 2015-02-23 12:14:54 -0600 | [diff] [blame] | 195 | |
Paul Kehrer | 31e3988 | 2015-03-11 11:37:04 -0500 | [diff] [blame] | 196 | .. function:: load_pem_x509_csr(data, backend) |
Paul Kehrer | dc480ad | 2015-02-23 12:14:54 -0600 | [diff] [blame] | 197 | |
| 198 | .. versionadded:: 0.9 |
| 199 | |
Paul Kehrer | a1a1f23 | 2015-03-15 15:34:35 -0500 | [diff] [blame] | 200 | Deserialize a certificate signing request (CSR) from PEM encoded data. PEM |
Paul Kehrer | 5aadb9c | 2015-03-11 20:48:42 -0500 | [diff] [blame] | 201 | requests are base64 decoded and have delimiters that look like |
Paul Kehrer | d3dafbd | 2015-03-15 16:24:18 -0500 | [diff] [blame] | 202 | ``-----BEGIN CERTIFICATE REQUEST-----``. This format is also known as |
| 203 | PKCS#10. |
Paul Kehrer | dc480ad | 2015-02-23 12:14:54 -0600 | [diff] [blame] | 204 | |
| 205 | :param bytes data: The PEM encoded request data. |
| 206 | |
| 207 | :param backend: A backend supporting the |
| 208 | :class:`~cryptography.hazmat.backends.interfaces.X509Backend` |
| 209 | interface. |
| 210 | |
Paul Kehrer | a1a1f23 | 2015-03-15 15:34:35 -0500 | [diff] [blame] | 211 | :returns: An instance of |
| 212 | :class:`~cryptography.x509.CertificateSigningRequest`. |
Paul Kehrer | dc480ad | 2015-02-23 12:14:54 -0600 | [diff] [blame] | 213 | |
Paul Kehrer | 1effb6e | 2015-03-30 15:05:59 -0500 | [diff] [blame] | 214 | .. function:: load_der_x509_csr(data, backend) |
| 215 | |
| 216 | .. versionadded:: 0.9 |
| 217 | |
| 218 | Deserialize a certificate signing request (CSR) from DER encoded data. DER |
| 219 | is a binary format and is not commonly used with CSRs. |
| 220 | |
| 221 | :param bytes data: The DER encoded request data. |
| 222 | |
| 223 | :param backend: A backend supporting the |
| 224 | :class:`~cryptography.hazmat.backends.interfaces.X509Backend` |
| 225 | interface. |
| 226 | |
| 227 | :returns: An instance of |
| 228 | :class:`~cryptography.x509.CertificateSigningRequest`. |
| 229 | |
Paul Kehrer | dc480ad | 2015-02-23 12:14:54 -0600 | [diff] [blame] | 230 | .. doctest:: |
| 231 | |
| 232 | >>> from cryptography import x509 |
| 233 | >>> from cryptography.hazmat.backends import default_backend |
| 234 | >>> from cryptography.hazmat.primitives import hashes |
Paul Kehrer | a1a1f23 | 2015-03-15 15:34:35 -0500 | [diff] [blame] | 235 | >>> csr = x509.load_pem_x509_csr(pem_req_data, default_backend()) |
| 236 | >>> isinstance(csr.signature_hash_algorithm, hashes.SHA1) |
Paul Kehrer | dc480ad | 2015-02-23 12:14:54 -0600 | [diff] [blame] | 237 | True |
| 238 | |
Paul Kehrer | e76cd27 | 2014-12-14 19:00:51 -0600 | [diff] [blame] | 239 | X.509 Certificate Object |
| 240 | ~~~~~~~~~~~~~~~~~~~~~~~~ |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 241 | |
Paul Kehrer | e76cd27 | 2014-12-14 19:00:51 -0600 | [diff] [blame] | 242 | .. class:: Certificate |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 243 | |
| 244 | .. versionadded:: 0.7 |
| 245 | |
| 246 | .. attribute:: version |
| 247 | |
Paul Kehrer | e76cd27 | 2014-12-14 19:00:51 -0600 | [diff] [blame] | 248 | :type: :class:`~cryptography.x509.Version` |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 249 | |
Paul Kehrer | e76cd27 | 2014-12-14 19:00:51 -0600 | [diff] [blame] | 250 | The certificate version as an enumeration. Version 3 certificates are |
| 251 | the latest version and also the only type you should see in practice. |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 252 | |
Alex Gaynor | 89c4dc8 | 2014-12-16 16:49:33 -0800 | [diff] [blame] | 253 | :raises cryptography.x509.InvalidVersion: If the version in the |
Alex Gaynor | 6d7ab4c | 2014-12-16 16:50:33 -0800 | [diff] [blame] | 254 | certificate is not a known |
| 255 | :class:`X.509 version <cryptography.x509.Version>`. |
Paul Kehrer | 92aac38 | 2014-12-15 16:25:28 -0600 | [diff] [blame] | 256 | |
Paul Kehrer | cc8a26e | 2014-12-16 12:40:16 -0600 | [diff] [blame] | 257 | .. doctest:: |
| 258 | |
| 259 | >>> cert.version |
| 260 | <Version.v3: 2> |
| 261 | |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 262 | .. method:: fingerprint(algorithm) |
| 263 | |
| 264 | :param algorithm: The |
Paul Kehrer | 601278a | 2015-02-12 12:51:00 -0600 | [diff] [blame] | 265 | :class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 266 | that will be used to generate the fingerprint. |
| 267 | |
Erik Trauschke | 2dcce90 | 2015-05-14 16:12:24 -0700 | [diff] [blame] | 268 | :return bytes: The fingerprint using the supplied hash algorithm, as |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 269 | bytes. |
| 270 | |
Paul Kehrer | cc8a26e | 2014-12-16 12:40:16 -0600 | [diff] [blame] | 271 | .. doctest:: |
| 272 | |
| 273 | >>> from cryptography.hazmat.primitives import hashes |
| 274 | >>> cert.fingerprint(hashes.SHA256()) |
Paul Kehrer | 78a8150 | 2014-12-16 14:47:52 -0600 | [diff] [blame] | 275 | '\x86\xd2\x187Gc\xfc\xe7}[+E9\x8d\xb4\x8f\x10\xe5S\xda\x18u\xbe}a\x03\x08[\xac\xa04?' |
Paul Kehrer | cc8a26e | 2014-12-16 12:40:16 -0600 | [diff] [blame] | 276 | |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 277 | .. attribute:: serial |
| 278 | |
| 279 | :type: int |
| 280 | |
| 281 | The serial as a Python integer. |
| 282 | |
Paul Kehrer | cc8a26e | 2014-12-16 12:40:16 -0600 | [diff] [blame] | 283 | .. doctest:: |
| 284 | |
| 285 | >>> cert.serial |
| 286 | 2 |
| 287 | |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 288 | .. method:: public_key() |
| 289 | |
| 290 | :type: |
Alex Stapleton | f79c231 | 2014-12-30 12:50:14 +0000 | [diff] [blame] | 291 | :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey` or |
Paul Kehrer | 45efdbc | 2015-02-12 10:58:22 -0600 | [diff] [blame] | 292 | :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey` or |
| 293 | :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey` |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 294 | |
| 295 | The public key associated with the certificate. |
| 296 | |
Paul Kehrer | cc8a26e | 2014-12-16 12:40:16 -0600 | [diff] [blame] | 297 | .. doctest:: |
| 298 | |
Alex Stapleton | f79c231 | 2014-12-30 12:50:14 +0000 | [diff] [blame] | 299 | >>> from cryptography.hazmat.primitives.asymmetric import rsa |
Paul Kehrer | cc8a26e | 2014-12-16 12:40:16 -0600 | [diff] [blame] | 300 | >>> public_key = cert.public_key() |
Alex Stapleton | f79c231 | 2014-12-30 12:50:14 +0000 | [diff] [blame] | 301 | >>> isinstance(public_key, rsa.RSAPublicKey) |
Paul Kehrer | cc8a26e | 2014-12-16 12:40:16 -0600 | [diff] [blame] | 302 | True |
| 303 | |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 304 | .. attribute:: not_valid_before |
| 305 | |
| 306 | :type: :class:`datetime.datetime` |
| 307 | |
Paul Kehrer | 78a8150 | 2014-12-16 14:47:52 -0600 | [diff] [blame] | 308 | A naïve datetime representing the beginning of the validity period for |
| 309 | the certificate in UTC. This value is inclusive. |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 310 | |
Paul Kehrer | cc8a26e | 2014-12-16 12:40:16 -0600 | [diff] [blame] | 311 | .. doctest:: |
| 312 | |
| 313 | >>> cert.not_valid_before |
| 314 | datetime.datetime(2010, 1, 1, 8, 30) |
| 315 | |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 316 | .. attribute:: not_valid_after |
| 317 | |
| 318 | :type: :class:`datetime.datetime` |
| 319 | |
Paul Kehrer | 78a8150 | 2014-12-16 14:47:52 -0600 | [diff] [blame] | 320 | A naïve datetime representing the end of the validity period for the |
| 321 | certificate in UTC. This value is inclusive. |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 322 | |
Paul Kehrer | cc8a26e | 2014-12-16 12:40:16 -0600 | [diff] [blame] | 323 | .. doctest:: |
| 324 | |
| 325 | >>> cert.not_valid_after |
| 326 | datetime.datetime(2030, 12, 31, 8, 30) |
| 327 | |
Paul Kehrer | 719d536 | 2015-01-01 20:03:52 -0600 | [diff] [blame] | 328 | .. attribute:: issuer |
| 329 | |
| 330 | .. versionadded:: 0.8 |
| 331 | |
| 332 | :type: :class:`Name` |
| 333 | |
| 334 | The :class:`Name` of the issuer. |
| 335 | |
| 336 | .. attribute:: subject |
| 337 | |
| 338 | .. versionadded:: 0.8 |
| 339 | |
| 340 | :type: :class:`Name` |
| 341 | |
| 342 | The :class:`Name` of the subject. |
| 343 | |
Paul Kehrer | 8802a5b | 2015-02-13 12:06:57 -0600 | [diff] [blame] | 344 | .. attribute:: signature_hash_algorithm |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 345 | |
Paul Kehrer | 8802a5b | 2015-02-13 12:06:57 -0600 | [diff] [blame] | 346 | :type: :class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 347 | |
Paul Kehrer | e612ec7 | 2015-02-16 14:33:35 -0600 | [diff] [blame] | 348 | Returns the |
Paul Kehrer | 71d40c6 | 2015-02-19 08:21:04 -0600 | [diff] [blame] | 349 | :class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` which |
Paul Kehrer | 1a7ba87 | 2015-02-19 18:09:05 -0600 | [diff] [blame] | 350 | was used in signing this certificate. |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 351 | |
| 352 | .. doctest:: |
| 353 | |
Paul Kehrer | 8802a5b | 2015-02-13 12:06:57 -0600 | [diff] [blame] | 354 | >>> from cryptography.hazmat.primitives import hashes |
| 355 | >>> isinstance(cert.signature_hash_algorithm, hashes.SHA256) |
| 356 | True |
Paul Kehrer | 719d536 | 2015-01-01 20:03:52 -0600 | [diff] [blame] | 357 | |
Paul Kehrer | fbb7ac8 | 2015-03-16 19:26:29 -0500 | [diff] [blame] | 358 | .. attribute:: extensions |
| 359 | |
| 360 | :type: :class:`Extensions` |
| 361 | |
| 362 | The extensions encoded in the certificate. |
| 363 | |
| 364 | :raises cryptography.x509.DuplicateExtension: If more than one |
| 365 | extension of the same type is found within the certificate. |
| 366 | |
Paul Kehrer | d8fc0be | 2015-04-21 08:31:10 -0500 | [diff] [blame] | 367 | :raises cryptography.x509.UnsupportedExtension: If the certificate |
| 368 | contains an extension that is not supported. |
| 369 | |
Paul Kehrer | bed0735 | 2015-04-21 08:31:10 -0500 | [diff] [blame] | 370 | :raises cryptography.x509.UnsupportedGeneralNameType: If an extension |
| 371 | contains a general name that is not supported. |
| 372 | |
Paul Kehrer | b896881 | 2015-05-15 09:01:34 -0700 | [diff] [blame] | 373 | :raises UnicodeError: If an extension contains IDNA encoding that is |
| 374 | invalid or not compliant with IDNA 2008. |
| 375 | |
Paul Kehrer | fa56a23 | 2015-03-17 13:14:03 -0500 | [diff] [blame] | 376 | .. doctest:: |
| 377 | |
| 378 | >>> for ext in cert.extensions: |
| 379 | ... print(ext) |
Paul Kehrer | d774de9 | 2015-05-03 10:52:25 -0500 | [diff] [blame] | 380 | <Extension(oid=<ObjectIdentifier(oid=2.5.29.35, name=authorityKeyIdentifier)>, critical=False, value=<AuthorityKeyIdentifier(key_identifier='\xe4}_\xd1\\\x95\x86\x08,\x05\xae\xbeu\xb6e\xa7\xd9]\xa8f', authority_cert_issuer=None, authority_cert_serial_number=None)>)> |
Paul Kehrer | cbfb101 | 2015-04-10 20:57:20 -0400 | [diff] [blame] | 381 | <Extension(oid=<ObjectIdentifier(oid=2.5.29.14, name=subjectKeyIdentifier)>, critical=False, value=<SubjectKeyIdentifier(digest='X\x01\x84$\x1b\xbc+R\x94J=\xa5\x10r\x14Q\xf5\xaf:\xc9')>)> |
Paul Kehrer | b511ba8 | 2015-04-15 11:22:48 -0400 | [diff] [blame] | 382 | <Extension(oid=<ObjectIdentifier(oid=2.5.29.15, name=keyUsage)>, critical=True, value=<KeyUsage(digital_signature=False, content_commitment=False, key_encipherment=False, data_encipherment=False, key_agreement=False, key_cert_sign=True, crl_sign=True, encipher_only=None, decipher_only=None)>)> |
Paul Kehrer | 2008d9c | 2015-05-12 22:19:56 -0500 | [diff] [blame] | 383 | <Extension(oid=<ObjectIdentifier(oid=2.5.29.32, name=certificatePolicies)>, critical=False, value=<CertificatePolicies([<PolicyInformation(policy_identifier=<ObjectIdentifier(oid=2.16.840.1.101.3.2.1.48.1, name=Unknown OID)>, policy_qualifiers=None)>])>)> |
Paul Kehrer | fa56a23 | 2015-03-17 13:14:03 -0500 | [diff] [blame] | 384 | <Extension(oid=<ObjectIdentifier(oid=2.5.29.19, name=basicConstraints)>, critical=True, value=<BasicConstraints(ca=True, path_length=None)>)> |
| 385 | |
Andre Caron | a8aded6 | 2015-05-19 20:11:57 -0400 | [diff] [blame] | 386 | .. method:: public_bytes(encoding) |
| 387 | |
Alex Gaynor | d0b376b | 2015-07-05 13:58:12 -0400 | [diff] [blame] | 388 | .. versionadded:: 1.0 |
| 389 | |
Andre Caron | a8aded6 | 2015-05-19 20:11:57 -0400 | [diff] [blame] | 390 | :param encoding: The |
| 391 | :class:`~cryptography.hazmat.primitives.serialization.Encoding` |
| 392 | that will be used to serialize the certificate. |
| 393 | |
| 394 | :return bytes: The data that can be written to a file or sent |
| 395 | over the network to be verified by clients. |
| 396 | |
Erik Trauschke | 2dcce90 | 2015-05-14 16:12:24 -0700 | [diff] [blame] | 397 | X.509 CRL (Certificate Revocation List) Object |
| 398 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 399 | |
| 400 | .. class:: CertificateRevocationList |
| 401 | |
| 402 | .. versionadded:: 1.0 |
| 403 | |
Erik Trauschke | 3cdabaf | 2015-10-13 09:42:53 -0700 | [diff] [blame] | 404 | A CertificateRevocationList is an object representing a list of revoked |
| 405 | certificates. The object is iterable and will yield the RevokedCertificate |
| 406 | objects stored in this CRL. |
| 407 | |
| 408 | .. doctest:: |
Erik Trauschke | b14f7d1 | 2015-10-13 09:55:39 -0700 | [diff] [blame] | 409 | |
Erik Trauschke | 3cdabaf | 2015-10-13 09:42:53 -0700 | [diff] [blame] | 410 | >>> len(crl) |
| 411 | 1 |
| 412 | >>> type(crl[0]) |
| 413 | <class 'cryptography.hazmat.backends.openssl.x509._RevokedCertificate'> |
| 414 | >>> for r in crl: |
| 415 | ... print(r.serial_number) |
| 416 | 0 |
| 417 | |
Erik Trauschke | 2dcce90 | 2015-05-14 16:12:24 -0700 | [diff] [blame] | 418 | .. method:: fingerprint(algorithm) |
| 419 | |
| 420 | :param algorithm: The |
| 421 | :class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` |
| 422 | that will be used to generate the fingerprint. |
| 423 | |
| 424 | :return bytes: The fingerprint using the supplied hash algorithm, as |
| 425 | bytes. |
| 426 | |
Erik Trauschke | dc57040 | 2015-09-24 20:24:28 -0700 | [diff] [blame] | 427 | .. doctest:: |
| 428 | |
| 429 | >>> from cryptography.hazmat.primitives import hashes |
| 430 | >>> crl.fingerprint(hashes.SHA256()) |
| 431 | 'e\xcf.\xc4:\x83?1\xdc\xf3\xfc\x95\xd7\xb3\x87\xb3\x8e\xf8\xb93!\x87\x07\x9d\x1b\xb4!\xb9\xe4W\xf4\x1f' |
| 432 | |
Erik Trauschke | 2dcce90 | 2015-05-14 16:12:24 -0700 | [diff] [blame] | 433 | .. attribute:: signature_hash_algorithm |
| 434 | |
| 435 | :type: :class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` |
| 436 | |
| 437 | Returns the |
| 438 | :class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` which |
| 439 | was used in signing this CRL. |
| 440 | |
Erik Trauschke | dc57040 | 2015-09-24 20:24:28 -0700 | [diff] [blame] | 441 | .. doctest:: |
| 442 | |
| 443 | >>> from cryptography.hazmat.primitives import hashes |
| 444 | >>> isinstance(crl.signature_hash_algorithm, hashes.SHA256) |
| 445 | True |
| 446 | |
Erik Trauschke | 2dcce90 | 2015-05-14 16:12:24 -0700 | [diff] [blame] | 447 | .. attribute:: issuer |
| 448 | |
| 449 | :type: :class:`Name` |
| 450 | |
| 451 | The :class:`Name` of the issuer. |
| 452 | |
Erik Trauschke | dc57040 | 2015-09-24 20:24:28 -0700 | [diff] [blame] | 453 | .. doctest:: |
| 454 | |
| 455 | >>> crl.issuer |
| 456 | <Name([<NameAttribute(oid=<ObjectIdentifier(oid=2.5.4.6, name=countryName)>, value=u'US')>, <NameAttribute(oid=<ObjectIdentifier(oid=2.5.4.3, name=commonName)>, value=u'cryptography.io')>])> |
| 457 | |
Erik Trauschke | 2dcce90 | 2015-05-14 16:12:24 -0700 | [diff] [blame] | 458 | .. attribute:: next_update |
| 459 | |
| 460 | :type: :class:`datetime.datetime` |
| 461 | |
| 462 | A naïve datetime representing when the next update to this CRL is |
| 463 | expected. |
| 464 | |
Erik Trauschke | dc57040 | 2015-09-24 20:24:28 -0700 | [diff] [blame] | 465 | .. doctest:: |
| 466 | |
| 467 | >>> crl.next_update |
| 468 | datetime.datetime(2016, 1, 1, 0, 0) |
| 469 | |
Erik Trauschke | 2dcce90 | 2015-05-14 16:12:24 -0700 | [diff] [blame] | 470 | .. attribute:: last_update |
| 471 | |
| 472 | :type: :class:`datetime.datetime` |
| 473 | |
| 474 | A naïve datetime representing when the this CRL was last updated. |
| 475 | |
Erik Trauschke | dc57040 | 2015-09-24 20:24:28 -0700 | [diff] [blame] | 476 | .. doctest:: |
| 477 | |
| 478 | >>> crl.last_update |
| 479 | datetime.datetime(2015, 1, 1, 0, 0) |
| 480 | |
Erik Trauschke | 2dcce90 | 2015-05-14 16:12:24 -0700 | [diff] [blame] | 481 | .. attribute:: extensions |
| 482 | |
| 483 | :type: :class:`Extensions` |
| 484 | |
| 485 | The extensions encoded in the CRL. |
| 486 | |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 487 | X.509 Certificate Builder |
| 488 | ~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 489 | |
| 490 | .. class:: CertificateBuilder |
| 491 | |
Ian Cordasco | 1517a4b | 2015-08-02 22:11:19 -0500 | [diff] [blame] | 492 | .. versionadded:: 1.0 |
| 493 | |
| 494 | .. doctest:: |
| 495 | |
| 496 | >>> from cryptography import x509 |
| 497 | >>> from cryptography.hazmat.backends import default_backend |
| 498 | >>> from cryptography.hazmat.primitives import hashes |
| 499 | >>> from cryptography.hazmat.primitives.asymmetric import rsa |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 500 | >>> from cryptography.x509.oid import NameOID |
Ian Cordasco | 1517a4b | 2015-08-02 22:11:19 -0500 | [diff] [blame] | 501 | >>> import datetime |
| 502 | >>> import uuid |
| 503 | >>> one_day = datetime.timedelta(1, 0, 0) |
| 504 | >>> private_key = rsa.generate_private_key( |
| 505 | ... public_exponent=65537, |
| 506 | ... key_size=2048, |
| 507 | ... backend=default_backend() |
| 508 | ... ) |
| 509 | >>> public_key = rsa.generate_private_key( |
| 510 | ... public_exponent=65537, |
| 511 | ... key_size=2048, |
| 512 | ... backend=default_backend() |
| 513 | ... ).public_key() |
| 514 | >>> builder = x509.CertificateBuilder() |
| 515 | >>> builder = builder.subject_name(x509.Name([ |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 516 | ... x509.NameAttribute(NameOID.COMMON_NAME, u'cryptography.io'), |
Ian Cordasco | 1517a4b | 2015-08-02 22:11:19 -0500 | [diff] [blame] | 517 | ... ])) |
| 518 | >>> builder = builder.issuer_name(x509.Name([ |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 519 | ... x509.NameAttribute(NameOID.COMMON_NAME, u'cryptography.io'), |
Ian Cordasco | 1517a4b | 2015-08-02 22:11:19 -0500 | [diff] [blame] | 520 | ... ])) |
| 521 | >>> builder = builder.not_valid_before(datetime.datetime.today() - one_day) |
| 522 | >>> builder = builder.not_valid_after(datetime.datetime(2018, 8, 2)) |
| 523 | >>> builder = builder.serial_number(int(uuid.uuid4())) |
| 524 | >>> builder = builder.public_key(public_key) |
| 525 | >>> builder = builder.add_extension( |
| 526 | ... x509.BasicConstraints(ca=False, path_length=None), critical=True, |
| 527 | ... ) |
| 528 | >>> certificate = builder.sign( |
| 529 | ... private_key=private_key, algorithm=hashes.SHA256(), |
| 530 | ... backend=default_backend() |
| 531 | ... ) |
| 532 | >>> isinstance(certificate, x509.Certificate) |
| 533 | True |
| 534 | |
Ian Cordasco | 0092a0b | 2015-07-18 21:46:41 -0500 | [diff] [blame] | 535 | .. method:: issuer_name(name) |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 536 | |
| 537 | Sets the issuer's distinguished name. |
| 538 | |
Ian Cordasco | c9682ad | 2015-08-01 12:11:13 -0500 | [diff] [blame] | 539 | :param name: The :class:`~cryptography.x509.Name` that describes the |
| 540 | issuer (CA). |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 541 | |
Ian Cordasco | 0092a0b | 2015-07-18 21:46:41 -0500 | [diff] [blame] | 542 | .. method:: subject_name(name) |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 543 | |
| 544 | Sets the subject's distinguished name. |
| 545 | |
Ian Cordasco | c9682ad | 2015-08-01 12:11:13 -0500 | [diff] [blame] | 546 | :param name: The :class:`~cryptography.x509.Name` that describes the |
Ian Cordasco | 85fc4d5 | 2015-08-01 20:29:31 -0500 | [diff] [blame] | 547 | subject. |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 548 | |
Ian Cordasco | 0092a0b | 2015-07-18 21:46:41 -0500 | [diff] [blame] | 549 | .. method:: public_key(public_key) |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 550 | |
| 551 | Sets the subject's public key. |
| 552 | |
Ian Cordasco | 8f57142 | 2015-08-02 11:31:08 -0500 | [diff] [blame] | 553 | :param public_key: The subject's public key. This can be one of |
| 554 | :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey`, |
| 555 | :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey` or |
| 556 | :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey` |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 557 | |
Ian Cordasco | 0092a0b | 2015-07-18 21:46:41 -0500 | [diff] [blame] | 558 | .. method:: serial_number(serial_number) |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 559 | |
| 560 | Sets the certificate's serial number (an integer). The CA's policy |
| 561 | determines how it attributes serial numbers to certificates. The only |
| 562 | requirement is that this number uniquely identify the certificate given |
| 563 | the issuer. |
| 564 | |
| 565 | :param serial_number: Integer number that will be used by the CA to |
| 566 | identify this certificate (most notably during certificate |
Ian Cordasco | 17c8900 | 2015-08-02 21:13:59 -0500 | [diff] [blame] | 567 | revocation checking). Users are encouraged to use a method of |
| 568 | generating 20 bytes of entropy, e.g., UUID4. For more information |
Ian Cordasco | b7530a4 | 2015-08-02 22:47:06 -0500 | [diff] [blame] | 569 | on secure random number generation, see :doc:`/random-numbers`. |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 570 | |
Ian Cordasco | 0092a0b | 2015-07-18 21:46:41 -0500 | [diff] [blame] | 571 | .. method:: not_valid_before(time) |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 572 | |
| 573 | Sets the certificate's activation time. This is the time from which |
| 574 | clients can start trusting the certificate. It may be different from |
| 575 | the time at which the certificate was created. |
| 576 | |
Ian Cordasco | 17c8900 | 2015-08-02 21:13:59 -0500 | [diff] [blame] | 577 | :param time: The :class:`datetime.datetime` object (in UTC) that marks the |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 578 | activation time for the certificate. The certificate may not be |
| 579 | trusted clients if it is used before this time. |
| 580 | |
Ian Cordasco | 0092a0b | 2015-07-18 21:46:41 -0500 | [diff] [blame] | 581 | .. method:: not_valid_after(time) |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 582 | |
| 583 | Sets the certificate's expiration time. This is the time from which |
| 584 | clients should no longer trust the certificate. The CA's policy will |
| 585 | determine how long the certificate should remain in use. |
| 586 | |
Ian Cordasco | 17c8900 | 2015-08-02 21:13:59 -0500 | [diff] [blame] | 587 | :param time: The :class:`datetime.datetime` object (in UTC) that marks the |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 588 | expiration time for the certificate. The certificate may not be |
| 589 | trusted clients if it is used after this time. |
| 590 | |
Ian Cordasco | 17c8900 | 2015-08-02 21:13:59 -0500 | [diff] [blame] | 591 | .. method:: add_extension(extension, critical) |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 592 | |
| 593 | Adds an X.509 extension to the certificate. |
| 594 | |
Ian Cordasco | 8f57142 | 2015-08-02 11:31:08 -0500 | [diff] [blame] | 595 | :param extension: The extension to add to the certificate. Can be one |
| 596 | of :class:`~cryptography.x509.BasicConstraints` or |
| 597 | :class:`~cryptography.x509.SubjectAlternativeName`. |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 598 | |
Ian Cordasco | 17c8900 | 2015-08-02 21:13:59 -0500 | [diff] [blame] | 599 | :param critical: Set to ``True`` if the extension must be understood and |
| 600 | handled by whoever reads the certificate. |
| 601 | |
Paul Kehrer | 9add80e | 2015-08-03 17:53:14 +0100 | [diff] [blame] | 602 | .. method:: sign(private_key, algorithm, backend) |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 603 | |
| 604 | Sign the certificate using the CA's private key. |
| 605 | |
Ian Cordasco | c5e1c25 | 2015-07-31 23:33:35 -0500 | [diff] [blame] | 606 | :param private_key: The |
| 607 | :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`, |
| 608 | :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey` or |
| 609 | :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey` |
| 610 | that will be used to sign the certificate. |
| 611 | |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 612 | :param algorithm: The |
| 613 | :class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` that |
| 614 | will be used to generate the signature. |
| 615 | |
Paul Kehrer | 9add80e | 2015-08-03 17:53:14 +0100 | [diff] [blame] | 616 | :param backend: Backend that will be used to build the certificate. |
| 617 | Must support the |
| 618 | :class:`~cryptography.hazmat.backends.interfaces.X509Backend` |
| 619 | interface. |
| 620 | |
Andre Caron | 9bbfcea | 2015-05-18 20:55:29 -0400 | [diff] [blame] | 621 | |
Paul Kehrer | 5aadb9c | 2015-03-11 20:48:42 -0500 | [diff] [blame] | 622 | X.509 CSR (Certificate Signing Request) Object |
| 623 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
Paul Kehrer | dc480ad | 2015-02-23 12:14:54 -0600 | [diff] [blame] | 624 | |
Paul Kehrer | a1a1f23 | 2015-03-15 15:34:35 -0500 | [diff] [blame] | 625 | .. class:: CertificateSigningRequest |
Paul Kehrer | dc480ad | 2015-02-23 12:14:54 -0600 | [diff] [blame] | 626 | |
| 627 | .. versionadded:: 0.9 |
| 628 | |
| 629 | .. method:: public_key() |
| 630 | |
| 631 | :type: |
| 632 | :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey` or |
| 633 | :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey` or |
| 634 | :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey` |
| 635 | |
| 636 | The public key associated with the request. |
| 637 | |
| 638 | .. doctest:: |
| 639 | |
| 640 | >>> from cryptography.hazmat.primitives.asymmetric import rsa |
Paul Kehrer | a1a1f23 | 2015-03-15 15:34:35 -0500 | [diff] [blame] | 641 | >>> public_key = csr.public_key() |
Paul Kehrer | dc480ad | 2015-02-23 12:14:54 -0600 | [diff] [blame] | 642 | >>> isinstance(public_key, rsa.RSAPublicKey) |
| 643 | True |
| 644 | |
| 645 | .. attribute:: subject |
| 646 | |
| 647 | :type: :class:`Name` |
| 648 | |
| 649 | The :class:`Name` of the subject. |
| 650 | |
| 651 | .. attribute:: signature_hash_algorithm |
| 652 | |
| 653 | :type: :class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` |
| 654 | |
| 655 | Returns the |
| 656 | :class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` which |
| 657 | was used in signing this request. |
| 658 | |
| 659 | .. doctest:: |
| 660 | |
| 661 | >>> from cryptography.hazmat.primitives import hashes |
Paul Kehrer | a1a1f23 | 2015-03-15 15:34:35 -0500 | [diff] [blame] | 662 | >>> isinstance(csr.signature_hash_algorithm, hashes.SHA1) |
Paul Kehrer | dc480ad | 2015-02-23 12:14:54 -0600 | [diff] [blame] | 663 | True |
| 664 | |
Paul Kehrer | c4e6194 | 2015-08-01 21:21:13 +0100 | [diff] [blame] | 665 | .. attribute:: extensions |
| 666 | |
| 667 | :type: :class:`Extensions` |
| 668 | |
| 669 | The extensions encoded in the certificate signing request. |
| 670 | |
| 671 | :raises cryptography.x509.DuplicateExtension: If more than one |
Paul Kehrer | 24283d2 | 2015-08-01 21:31:19 +0100 | [diff] [blame] | 672 | extension of the same type is found within the certificate signing request. |
Paul Kehrer | c4e6194 | 2015-08-01 21:21:13 +0100 | [diff] [blame] | 673 | |
Paul Kehrer | 24283d2 | 2015-08-01 21:31:19 +0100 | [diff] [blame] | 674 | :raises cryptography.x509.UnsupportedExtension: If the certificate signing request |
Paul Kehrer | c4e6194 | 2015-08-01 21:21:13 +0100 | [diff] [blame] | 675 | contains an extension that is not supported. |
| 676 | |
| 677 | :raises cryptography.x509.UnsupportedGeneralNameType: If an extension |
| 678 | contains a general name that is not supported. |
| 679 | |
| 680 | :raises UnicodeError: If an extension contains IDNA encoding that is |
| 681 | invalid or not compliant with IDNA 2008. |
| 682 | |
| 683 | |
Andre Caron | 476c5df | 2015-05-18 10:23:28 -0400 | [diff] [blame] | 684 | .. method:: public_bytes(encoding) |
| 685 | |
Alex Gaynor | d0b376b | 2015-07-05 13:58:12 -0400 | [diff] [blame] | 686 | .. versionadded:: 1.0 |
| 687 | |
Andre Caron | 476c5df | 2015-05-18 10:23:28 -0400 | [diff] [blame] | 688 | :param encoding: The |
| 689 | :class:`~cryptography.hazmat.primitives.serialization.Encoding` |
| 690 | that will be used to serialize the certificate request. |
| 691 | |
| 692 | :return bytes: The data that can be written to a file or sent |
| 693 | over the network to be signed by the certificate |
| 694 | authority. |
| 695 | |
Erik Trauschke | 2dcce90 | 2015-05-14 16:12:24 -0700 | [diff] [blame] | 696 | X.509 Revoked Certificate Object |
Erik Trauschke | c5a8d17 | 2015-05-28 10:24:25 -0700 | [diff] [blame] | 697 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
Erik Trauschke | 2dcce90 | 2015-05-14 16:12:24 -0700 | [diff] [blame] | 698 | |
| 699 | .. class:: RevokedCertificate |
| 700 | |
| 701 | .. versionadded:: 1.0 |
| 702 | |
Erik Trauschke | 77f5a25 | 2015-10-14 08:06:38 -0700 | [diff] [blame^] | 703 | .. doctest:: |
| 704 | |
| 705 | >>> revoked_certificate = crl[0] |
| 706 | |
Erik Trauschke | 2dcce90 | 2015-05-14 16:12:24 -0700 | [diff] [blame] | 707 | .. attribute:: serial_number |
| 708 | |
| 709 | :type: :class:`int` |
| 710 | |
| 711 | An integer representing the serial number of the revoked certificate. |
| 712 | |
Erik Trauschke | dc57040 | 2015-09-24 20:24:28 -0700 | [diff] [blame] | 713 | .. doctest:: |
| 714 | |
Erik Trauschke | 3cdabaf | 2015-10-13 09:42:53 -0700 | [diff] [blame] | 715 | >>> revoked_certificate.serial_number |
Erik Trauschke | dc57040 | 2015-09-24 20:24:28 -0700 | [diff] [blame] | 716 | 0 |
| 717 | |
Erik Trauschke | 2dcce90 | 2015-05-14 16:12:24 -0700 | [diff] [blame] | 718 | .. attribute:: revocation_date |
| 719 | |
| 720 | :type: :class:`datetime.datetime` |
| 721 | |
| 722 | A naïve datetime representing the date this certificates was revoked. |
| 723 | |
Erik Trauschke | dc57040 | 2015-09-24 20:24:28 -0700 | [diff] [blame] | 724 | .. doctest:: |
| 725 | |
Erik Trauschke | 77f5a25 | 2015-10-14 08:06:38 -0700 | [diff] [blame^] | 726 | >>> revoked_certificate.revocation_date |
Erik Trauschke | dc57040 | 2015-09-24 20:24:28 -0700 | [diff] [blame] | 727 | datetime.datetime(2015, 1, 1, 0, 0) |
| 728 | |
Erik Trauschke | 2dcce90 | 2015-05-14 16:12:24 -0700 | [diff] [blame] | 729 | .. attribute:: extensions |
| 730 | |
| 731 | :type: :class:`Extensions` |
| 732 | |
| 733 | The extensions encoded in the revoked certificate. |
Andre Caron | 476c5df | 2015-05-18 10:23:28 -0400 | [diff] [blame] | 734 | |
Erik Trauschke | dc57040 | 2015-09-24 20:24:28 -0700 | [diff] [blame] | 735 | .. doctest:: |
| 736 | |
Erik Trauschke | 77f5a25 | 2015-10-14 08:06:38 -0700 | [diff] [blame^] | 737 | >>> for ext in revoked_certificate.extensions: |
Erik Trauschke | dc57040 | 2015-09-24 20:24:28 -0700 | [diff] [blame] | 738 | ... print(ext) |
| 739 | <Extension(oid=<ObjectIdentifier(oid=2.5.29.24, name=invalidityDate)>, critical=False, value=2015-01-01 00:00:00)> |
| 740 | <Extension(oid=<ObjectIdentifier(oid=2.5.29.21, name=cRLReason)>, critical=False, value=ReasonFlags.key_compromise)> |
| 741 | |
Andre Caron | 0ef595f | 2015-05-18 13:53:43 -0400 | [diff] [blame] | 742 | X.509 CSR (Certificate Signing Request) Builder Object |
| 743 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 744 | |
| 745 | .. class:: CertificateSigningRequestBuilder |
| 746 | |
Andre Caron | d259ee5 | 2015-06-02 23:47:11 -0400 | [diff] [blame] | 747 | .. versionadded:: 1.0 |
| 748 | |
| 749 | .. doctest:: |
| 750 | |
| 751 | >>> from cryptography import x509 |
| 752 | >>> from cryptography.hazmat.backends import default_backend |
| 753 | >>> from cryptography.hazmat.primitives import hashes |
| 754 | >>> from cryptography.hazmat.primitives.asymmetric import rsa |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 755 | >>> from cryptography.x509.oid import NameOID |
Andre Caron | d259ee5 | 2015-06-02 23:47:11 -0400 | [diff] [blame] | 756 | >>> private_key = rsa.generate_private_key( |
| 757 | ... public_exponent=65537, |
| 758 | ... key_size=2048, |
| 759 | ... backend=default_backend() |
| 760 | ... ) |
| 761 | >>> builder = x509.CertificateSigningRequestBuilder() |
Andre Caron | a9a5117 | 2015-06-06 20:18:44 -0400 | [diff] [blame] | 762 | >>> builder = builder.subject_name(x509.Name([ |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 763 | ... x509.NameAttribute(NameOID.COMMON_NAME, u'cryptography.io'), |
Andre Caron | d259ee5 | 2015-06-02 23:47:11 -0400 | [diff] [blame] | 764 | ... ])) |
Ian Cordasco | f06b6be | 2015-06-21 10:09:18 -0500 | [diff] [blame] | 765 | >>> builder = builder.add_extension( |
Ian Cordasco | 0112b02 | 2015-06-16 17:51:18 -0500 | [diff] [blame] | 766 | ... x509.BasicConstraints(ca=False, path_length=None), critical=True, |
Andre Caron | 472fd69 | 2015-06-06 20:04:44 -0400 | [diff] [blame] | 767 | ... ) |
Andre Caron | d259ee5 | 2015-06-02 23:47:11 -0400 | [diff] [blame] | 768 | >>> request = builder.sign( |
Alex Gaynor | de9e584 | 2015-06-26 20:11:23 -0400 | [diff] [blame] | 769 | ... private_key, hashes.SHA256(), default_backend() |
Andre Caron | d259ee5 | 2015-06-02 23:47:11 -0400 | [diff] [blame] | 770 | ... ) |
| 771 | >>> isinstance(request, x509.CertificateSigningRequest) |
| 772 | True |
| 773 | |
Andre Caron | a9a5117 | 2015-06-06 20:18:44 -0400 | [diff] [blame] | 774 | .. method:: subject_name(name) |
Andre Caron | 0ef595f | 2015-05-18 13:53:43 -0400 | [diff] [blame] | 775 | |
Andre Caron | 341ff85 | 2015-06-06 20:14:31 -0400 | [diff] [blame] | 776 | :param name: The :class:`~cryptography.x509.Name` of the certificate |
| 777 | subject. |
| 778 | :returns: A new |
| 779 | :class:`~cryptography.x509.CertificateSigningRequestBuilder`. |
Andre Caron | 0ef595f | 2015-05-18 13:53:43 -0400 | [diff] [blame] | 780 | |
Ian Cordasco | f06b6be | 2015-06-21 10:09:18 -0500 | [diff] [blame] | 781 | .. method:: add_extension(extension, critical) |
Andre Caron | 0ef595f | 2015-05-18 13:53:43 -0400 | [diff] [blame] | 782 | |
Andre Caron | 341ff85 | 2015-06-06 20:14:31 -0400 | [diff] [blame] | 783 | :param extension: The :class:`~cryptography.x509.Extension` to add to |
| 784 | the request. |
Andre Caron | 472fd69 | 2015-06-06 20:04:44 -0400 | [diff] [blame] | 785 | :param critical: Set to `True` if the extension must be understood and |
| 786 | handled by whoever reads the certificate. |
Andre Caron | 341ff85 | 2015-06-06 20:14:31 -0400 | [diff] [blame] | 787 | :returns: A new |
| 788 | :class:`~cryptography.x509.CertificateSigningRequestBuilder`. |
Andre Caron | 0ef595f | 2015-05-18 13:53:43 -0400 | [diff] [blame] | 789 | |
Alex Gaynor | b3b0fbe | 2015-06-26 19:57:18 -0400 | [diff] [blame] | 790 | .. method:: sign(private_key, algorithm, backend) |
Andre Caron | 0ef595f | 2015-05-18 13:53:43 -0400 | [diff] [blame] | 791 | |
| 792 | :param backend: Backend that will be used to sign the request. |
| 793 | Must support the |
| 794 | :class:`~cryptography.hazmat.backends.interfaces.X509Backend` |
| 795 | interface. |
| 796 | |
| 797 | :param private_key: The |
Andre Caron | 24f9bf4 | 2015-06-06 20:14:54 -0400 | [diff] [blame] | 798 | :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`, |
| 799 | :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey` or |
| 800 | :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey` |
Andre Caron | 0ef595f | 2015-05-18 13:53:43 -0400 | [diff] [blame] | 801 | that will be used to sign the request. When the request is |
| 802 | signed by a certificate authority, the private key's associated |
| 803 | public key will be stored in the resulting certificate. |
| 804 | |
| 805 | :param algorithm: The |
| 806 | :class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` |
| 807 | that will be used to generate the request signature. |
| 808 | |
Andre Caron | 341ff85 | 2015-06-06 20:14:31 -0400 | [diff] [blame] | 809 | :returns: A new |
| 810 | :class:`~cryptography.x509.CertificateSigningRequest`. |
Andre Caron | 0ef595f | 2015-05-18 13:53:43 -0400 | [diff] [blame] | 811 | |
| 812 | |
Paul Kehrer | 719d536 | 2015-01-01 20:03:52 -0600 | [diff] [blame] | 813 | .. class:: Name |
| 814 | |
| 815 | .. versionadded:: 0.8 |
| 816 | |
Paul Kehrer | 53d8d49 | 2015-02-13 18:47:30 -0600 | [diff] [blame] | 817 | An X509 Name is an ordered list of attributes. The object is iterable to |
Paul Kehrer | d21596e | 2015-02-14 09:17:26 -0600 | [diff] [blame] | 818 | get every attribute or you can use :meth:`Name.get_attributes_for_oid` to |
Paul Kehrer | 719d536 | 2015-01-01 20:03:52 -0600 | [diff] [blame] | 819 | obtain the specific type you want. Names are sometimes represented as a |
Paul Kehrer | 53d8d49 | 2015-02-13 18:47:30 -0600 | [diff] [blame] | 820 | slash or comma delimited string (e.g. ``/CN=mydomain.com/O=My Org/C=US`` or |
| 821 | ``CN=mydomain.com, O=My Org, C=US``). |
Paul Kehrer | 719d536 | 2015-01-01 20:03:52 -0600 | [diff] [blame] | 822 | |
Paul Kehrer | 53d8d49 | 2015-02-13 18:47:30 -0600 | [diff] [blame] | 823 | .. doctest:: |
Paul Kehrer | 719d536 | 2015-01-01 20:03:52 -0600 | [diff] [blame] | 824 | |
Paul Kehrer | 8b21a4a | 2015-02-14 07:56:36 -0600 | [diff] [blame] | 825 | >>> len(cert.subject) |
Paul Kehrer | 53d8d49 | 2015-02-13 18:47:30 -0600 | [diff] [blame] | 826 | 3 |
Paul Kehrer | 8b21a4a | 2015-02-14 07:56:36 -0600 | [diff] [blame] | 827 | >>> for attribute in cert.subject: |
| 828 | ... print(attribute) |
| 829 | <NameAttribute(oid=<ObjectIdentifier(oid=2.5.4.6, name=countryName)>, value=u'US')> |
| 830 | <NameAttribute(oid=<ObjectIdentifier(oid=2.5.4.10, name=organizationName)>, value=u'Test Certificates 2011')> |
| 831 | <NameAttribute(oid=<ObjectIdentifier(oid=2.5.4.3, name=commonName)>, value=u'Good CA')> |
Paul Kehrer | 719d536 | 2015-01-01 20:03:52 -0600 | [diff] [blame] | 832 | |
Paul Kehrer | e901d64 | 2015-02-11 18:50:58 -0600 | [diff] [blame] | 833 | .. method:: get_attributes_for_oid(oid) |
Paul Kehrer | 719d536 | 2015-01-01 20:03:52 -0600 | [diff] [blame] | 834 | |
Paul Kehrer | e901d64 | 2015-02-11 18:50:58 -0600 | [diff] [blame] | 835 | :param oid: An :class:`ObjectIdentifier` instance. |
Paul Kehrer | 719d536 | 2015-01-01 20:03:52 -0600 | [diff] [blame] | 836 | |
Paul Kehrer | e901d64 | 2015-02-11 18:50:58 -0600 | [diff] [blame] | 837 | :returns: A list of :class:`NameAttribute` instances that match the |
| 838 | OID provided. If nothing matches an empty list will be returned. |
Paul Kehrer | 719d536 | 2015-01-01 20:03:52 -0600 | [diff] [blame] | 839 | |
| 840 | .. doctest:: |
| 841 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 842 | >>> cert.subject.get_attributes_for_oid(NameOID.COMMON_NAME) |
Paul Kehrer | e901d64 | 2015-02-11 18:50:58 -0600 | [diff] [blame] | 843 | [<NameAttribute(oid=<ObjectIdentifier(oid=2.5.4.3, name=commonName)>, value=u'Good CA')>] |
Paul Kehrer | b2de948 | 2014-12-11 14:54:48 -0600 | [diff] [blame] | 844 | |
Paul Kehrer | e76cd27 | 2014-12-14 19:00:51 -0600 | [diff] [blame] | 845 | .. class:: Version |
Paul Kehrer | 016e08a | 2014-11-26 09:41:18 -1000 | [diff] [blame] | 846 | |
| 847 | .. versionadded:: 0.7 |
| 848 | |
| 849 | An enumeration for X.509 versions. |
| 850 | |
| 851 | .. attribute:: v1 |
| 852 | |
| 853 | For version 1 X.509 certificates. |
| 854 | |
| 855 | .. attribute:: v3 |
| 856 | |
| 857 | For version 3 X.509 certificates. |
| 858 | |
Paul Kehrer | 806bfb2 | 2015-02-02 17:05:24 -0600 | [diff] [blame] | 859 | .. class:: NameAttribute |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 860 | |
| 861 | .. versionadded:: 0.8 |
| 862 | |
Paul Kehrer | 834d22f | 2015-02-06 11:01:07 -0600 | [diff] [blame] | 863 | An X.509 name consists of a list of NameAttribute instances. |
Paul Kehrer | 5b0a8d6 | 2015-01-30 20:05:55 -0600 | [diff] [blame] | 864 | |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 865 | .. attribute:: oid |
| 866 | |
| 867 | :type: :class:`ObjectIdentifier` |
| 868 | |
| 869 | The attribute OID. |
| 870 | |
| 871 | .. attribute:: value |
| 872 | |
Paul Kehrer | d5852cb | 2015-01-30 08:25:23 -0600 | [diff] [blame] | 873 | :type: :term:`text` |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 874 | |
| 875 | The value of the attribute. |
| 876 | |
| 877 | .. class:: ObjectIdentifier |
| 878 | |
| 879 | .. versionadded:: 0.8 |
| 880 | |
Paul Kehrer | 5b0a8d6 | 2015-01-30 20:05:55 -0600 | [diff] [blame] | 881 | Object identifiers (frequently seen abbreviated as OID) identify the type |
Paul Kehrer | 806bfb2 | 2015-02-02 17:05:24 -0600 | [diff] [blame] | 882 | of a value (see: :class:`NameAttribute`). |
Paul Kehrer | 5b0a8d6 | 2015-01-30 20:05:55 -0600 | [diff] [blame] | 883 | |
Paul Kehrer | d44f9a6 | 2015-02-04 14:47:34 -0600 | [diff] [blame] | 884 | .. attribute:: dotted_string |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 885 | |
| 886 | :type: :class:`str` |
| 887 | |
Paul Kehrer | fedf4f4 | 2015-02-06 11:22:07 -0600 | [diff] [blame] | 888 | The dotted string value of the OID (e.g. ``"2.5.4.3"``) |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 889 | |
Paul Kehrer | 31bdf79 | 2015-03-25 14:11:00 -0500 | [diff] [blame] | 890 | .. _general_name_classes: |
| 891 | |
| 892 | General Name Classes |
| 893 | ~~~~~~~~~~~~~~~~~~~~ |
| 894 | |
| 895 | .. class:: GeneralName |
| 896 | |
| 897 | .. versionadded:: 0.9 |
| 898 | |
| 899 | This is the generic interface that all the following classes are registered |
| 900 | against. |
| 901 | |
| 902 | .. class:: RFC822Name |
| 903 | |
| 904 | .. versionadded:: 0.9 |
| 905 | |
| 906 | This corresponds to an email address. For example, ``user@example.com``. |
| 907 | |
| 908 | .. attribute:: value |
| 909 | |
| 910 | :type: :term:`text` |
| 911 | |
| 912 | .. class:: DNSName |
| 913 | |
| 914 | .. versionadded:: 0.9 |
| 915 | |
| 916 | This corresponds to a domain name. For example, ``cryptography.io``. |
| 917 | |
| 918 | .. attribute:: value |
| 919 | |
| 920 | :type: :term:`text` |
| 921 | |
| 922 | .. class:: DirectoryName |
| 923 | |
| 924 | .. versionadded:: 0.9 |
| 925 | |
| 926 | This corresponds to a directory name. |
| 927 | |
| 928 | .. attribute:: value |
| 929 | |
| 930 | :type: :class:`Name` |
| 931 | |
| 932 | .. class:: UniformResourceIdentifier |
| 933 | |
| 934 | .. versionadded:: 0.9 |
| 935 | |
| 936 | This corresponds to a uniform resource identifier. For example, |
Paul Kehrer | b8ef82e | 2015-04-22 16:04:24 -0500 | [diff] [blame] | 937 | ``https://cryptography.io``. The URI is parsed and IDNA decoded (see |
| 938 | :rfc:`5895`). |
| 939 | |
| 940 | .. note:: |
| 941 | |
| 942 | URIs that do not contain ``://`` in them will not be decoded. |
Paul Kehrer | 31bdf79 | 2015-03-25 14:11:00 -0500 | [diff] [blame] | 943 | |
| 944 | .. attribute:: value |
| 945 | |
| 946 | :type: :term:`text` |
| 947 | |
| 948 | .. class:: IPAddress |
| 949 | |
| 950 | .. versionadded:: 0.9 |
| 951 | |
| 952 | This corresponds to an IP address. |
| 953 | |
| 954 | .. attribute:: value |
| 955 | |
Paul Kehrer | eb17793 | 2015-05-17 18:33:33 -0700 | [diff] [blame] | 956 | :type: :class:`~ipaddress.IPv4Address`, |
| 957 | :class:`~ipaddress.IPv6Address`, :class:`~ipaddress.IPv4Network`, |
| 958 | or :class:`~ipaddress.IPv6Network`. |
Paul Kehrer | 31bdf79 | 2015-03-25 14:11:00 -0500 | [diff] [blame] | 959 | |
| 960 | .. class:: RegisteredID |
| 961 | |
| 962 | .. versionadded:: 0.9 |
| 963 | |
| 964 | This corresponds to a registered ID. |
| 965 | |
| 966 | .. attribute:: value |
| 967 | |
| 968 | :type: :class:`ObjectIdentifier` |
| 969 | |
Joshua Tauberer | 2ee5e3c | 2015-07-04 20:09:46 +0000 | [diff] [blame] | 970 | .. class:: OtherName |
| 971 | |
| 972 | .. versionadded:: 1.0 |
| 973 | |
Joshua Tauberer | 18b6fc8 | 2015-07-05 21:44:51 +0000 | [diff] [blame] | 974 | This corresponds to an ``otherName.`` An ``otherName`` has a type identifier and a value represented in binary DER format. |
Joshua Tauberer | 2ee5e3c | 2015-07-04 20:09:46 +0000 | [diff] [blame] | 975 | |
| 976 | .. attribute:: type_id |
| 977 | |
| 978 | :type: :class:`ObjectIdentifier` |
| 979 | |
| 980 | .. attribute:: value |
| 981 | |
| 982 | :type: `bytes` |
| 983 | |
Paul Kehrer | 8cf2642 | 2015-03-21 09:50:24 -0500 | [diff] [blame] | 984 | X.509 Extensions |
| 985 | ~~~~~~~~~~~~~~~~ |
| 986 | |
Paul Kehrer | fbb7ac8 | 2015-03-16 19:26:29 -0500 | [diff] [blame] | 987 | .. class:: Extensions |
| 988 | |
| 989 | .. versionadded:: 0.9 |
| 990 | |
| 991 | An X.509 Extensions instance is an ordered list of extensions. The object |
| 992 | is iterable to get every extension. |
| 993 | |
Paul Kehrer | fa56a23 | 2015-03-17 13:14:03 -0500 | [diff] [blame] | 994 | .. method:: get_extension_for_oid(oid) |
| 995 | |
| 996 | :param oid: An :class:`ObjectIdentifier` instance. |
| 997 | |
| 998 | :returns: An instance of the extension class. |
| 999 | |
| 1000 | :raises cryptography.x509.ExtensionNotFound: If the certificate does |
| 1001 | not have the extension requested. |
| 1002 | |
Paul Kehrer | fa56a23 | 2015-03-17 13:14:03 -0500 | [diff] [blame] | 1003 | .. doctest:: |
| 1004 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1005 | >>> from cryptography.x509.oid import ExtensionOID |
| 1006 | >>> cert.extensions.get_extension_for_oid(ExtensionOID.BASIC_CONSTRAINTS) |
Paul Kehrer | fa56a23 | 2015-03-17 13:14:03 -0500 | [diff] [blame] | 1007 | <Extension(oid=<ObjectIdentifier(oid=2.5.29.19, name=basicConstraints)>, critical=True, value=<BasicConstraints(ca=True, path_length=None)>)> |
| 1008 | |
Phoebe Queen | 019b7f8 | 2015-08-12 03:52:03 +0100 | [diff] [blame] | 1009 | .. method:: get_extension_for_class(extclass) |
| 1010 | |
Phoebe Queen | 6a603eb | 2015-08-12 14:14:49 +0100 | [diff] [blame] | 1011 | .. versionadded:: 1.1 |
| 1012 | |
Phoebe Queen | 019b7f8 | 2015-08-12 03:52:03 +0100 | [diff] [blame] | 1013 | :param extclass: An extension class. |
| 1014 | |
| 1015 | :returns: An instance of the extension class. |
| 1016 | |
| 1017 | :raises cryptography.x509.ExtensionNotFound: If the certificate does |
| 1018 | not have the extension requested. |
| 1019 | |
| 1020 | .. doctest:: |
| 1021 | |
| 1022 | >>> from cryptography import x509 |
| 1023 | >>> cert.extensions.get_extension_for_class(x509.BasicConstraints) |
| 1024 | <Extension(oid=<ObjectIdentifier(oid=2.5.29.19, name=basicConstraints)>, critical=True, value=<BasicConstraints(ca=True, path_length=None)>)> |
| 1025 | |
Paul Kehrer | 8cf2642 | 2015-03-21 09:50:24 -0500 | [diff] [blame] | 1026 | .. class:: Extension |
| 1027 | |
| 1028 | .. versionadded:: 0.9 |
| 1029 | |
Paul Kehrer | 8589466 | 2015-03-22 13:19:31 -0500 | [diff] [blame] | 1030 | .. attribute:: oid |
| 1031 | |
| 1032 | :type: :class:`ObjectIdentifier` |
| 1033 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1034 | One of the :class:`~cryptography.x509.oid.ExtensionOID` OIDs. |
Paul Kehrer | 8cf2642 | 2015-03-21 09:50:24 -0500 | [diff] [blame] | 1035 | |
| 1036 | .. attribute:: critical |
| 1037 | |
| 1038 | :type: bool |
| 1039 | |
Paul Kehrer | 58b7569 | 2015-03-22 23:24:58 -0500 | [diff] [blame] | 1040 | Determines whether a given extension is critical or not. :rfc:`5280` |
| 1041 | requires that "A certificate-using system MUST reject the certificate |
| 1042 | if it encounters a critical extension it does not recognize or a |
| 1043 | critical extension that contains information that it cannot process". |
Paul Kehrer | 8cf2642 | 2015-03-21 09:50:24 -0500 | [diff] [blame] | 1044 | |
Paul Kehrer | 8589466 | 2015-03-22 13:19:31 -0500 | [diff] [blame] | 1045 | .. attribute:: value |
| 1046 | |
| 1047 | Returns an instance of the extension type corresponding to the OID. |
| 1048 | |
Paul Kehrer | 14f0bd0 | 2015-08-06 11:55:18 +0100 | [diff] [blame] | 1049 | .. class:: ExtensionType |
| 1050 | |
| 1051 | .. versionadded:: 1.0 |
| 1052 | |
| 1053 | This is the interface against which all the following extension types are |
| 1054 | registered. |
| 1055 | |
Paul Kehrer | cecbbba | 2015-03-30 14:58:38 -0500 | [diff] [blame] | 1056 | .. class:: KeyUsage |
| 1057 | |
| 1058 | .. versionadded:: 0.9 |
| 1059 | |
| 1060 | The key usage extension defines the purpose of the key contained in the |
| 1061 | certificate. The usage restriction might be employed when a key that could |
Paul Kehrer | b33de93 | 2015-08-06 23:41:05 +0100 | [diff] [blame] | 1062 | be used for more than one operation is to be restricted. |
Paul Kehrer | cecbbba | 2015-03-30 14:58:38 -0500 | [diff] [blame] | 1063 | |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1064 | .. attribute:: oid |
| 1065 | |
| 1066 | .. versionadded:: 1.0 |
| 1067 | |
| 1068 | :type: :class:`ObjectIdentifier` |
| 1069 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1070 | Returns :attr:`~cryptography.x509.oid.ExtensionOID.KEY_USAGE`. |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1071 | |
Paul Kehrer | cecbbba | 2015-03-30 14:58:38 -0500 | [diff] [blame] | 1072 | .. attribute:: digital_signature |
| 1073 | |
| 1074 | :type: bool |
| 1075 | |
Paul Kehrer | 738407b | 2015-04-01 22:39:02 -0500 | [diff] [blame] | 1076 | This purpose is set to true when the subject public key is used for verifying |
Paul Kehrer | cecbbba | 2015-03-30 14:58:38 -0500 | [diff] [blame] | 1077 | digital signatures, other than signatures on certificates |
| 1078 | (``key_cert_sign``) and CRLs (``crl_sign``). |
| 1079 | |
| 1080 | .. attribute:: content_commitment |
| 1081 | |
| 1082 | :type: bool |
| 1083 | |
Paul Kehrer | 738407b | 2015-04-01 22:39:02 -0500 | [diff] [blame] | 1084 | This purpose is set to true when the subject public key is used for verifying |
Paul Kehrer | cecbbba | 2015-03-30 14:58:38 -0500 | [diff] [blame] | 1085 | digital signatures, other than signatures on certificates |
| 1086 | (``key_cert_sign``) and CRLs (``crl_sign``). It is used to provide a |
| 1087 | non-repudiation service that protects against the signing entity |
| 1088 | falsely denying some action. In the case of later conflict, a |
| 1089 | reliable third party may determine the authenticity of the signed |
| 1090 | data. This was called ``non_repudiation`` in older revisions of the |
| 1091 | X.509 specification. |
| 1092 | |
| 1093 | .. attribute:: key_encipherment |
| 1094 | |
| 1095 | :type: bool |
| 1096 | |
Paul Kehrer | 738407b | 2015-04-01 22:39:02 -0500 | [diff] [blame] | 1097 | This purpose is set to true when the subject public key is used for |
| 1098 | enciphering private or secret keys. |
Paul Kehrer | cecbbba | 2015-03-30 14:58:38 -0500 | [diff] [blame] | 1099 | |
| 1100 | .. attribute:: data_encipherment |
| 1101 | |
| 1102 | :type: bool |
| 1103 | |
Paul Kehrer | 738407b | 2015-04-01 22:39:02 -0500 | [diff] [blame] | 1104 | This purpose is set to true when the subject public key is used for |
| 1105 | directly enciphering raw user data without the use of an intermediate |
| 1106 | symmetric cipher. |
Paul Kehrer | cecbbba | 2015-03-30 14:58:38 -0500 | [diff] [blame] | 1107 | |
| 1108 | .. attribute:: key_agreement |
| 1109 | |
| 1110 | :type: bool |
| 1111 | |
Paul Kehrer | 738407b | 2015-04-01 22:39:02 -0500 | [diff] [blame] | 1112 | This purpose is set to true when the subject public key is used for key |
| 1113 | agreement. For example, when a Diffie-Hellman key is to be used for |
| 1114 | key management, then this purpose is set to true. |
Paul Kehrer | cecbbba | 2015-03-30 14:58:38 -0500 | [diff] [blame] | 1115 | |
| 1116 | .. attribute:: key_cert_sign |
| 1117 | |
| 1118 | :type: bool |
| 1119 | |
Paul Kehrer | 738407b | 2015-04-01 22:39:02 -0500 | [diff] [blame] | 1120 | This purpose is set to true when the subject public key is used for |
| 1121 | verifying signatures on public key certificates. If this purpose is set |
| 1122 | to true then ``ca`` must be true in the :class:`BasicConstraints` |
| 1123 | extension. |
Paul Kehrer | cecbbba | 2015-03-30 14:58:38 -0500 | [diff] [blame] | 1124 | |
| 1125 | .. attribute:: crl_sign |
| 1126 | |
| 1127 | :type: bool |
| 1128 | |
Paul Kehrer | 738407b | 2015-04-01 22:39:02 -0500 | [diff] [blame] | 1129 | This purpose is set to true when the subject public key is used for |
| 1130 | verifying signatures on certificate revocation lists. |
Paul Kehrer | cecbbba | 2015-03-30 14:58:38 -0500 | [diff] [blame] | 1131 | |
| 1132 | .. attribute:: encipher_only |
| 1133 | |
| 1134 | :type: bool |
| 1135 | |
Paul Kehrer | 738407b | 2015-04-01 22:39:02 -0500 | [diff] [blame] | 1136 | When this purposes is set to true and the ``key_agreement`` purpose is |
| 1137 | also set, the subject public key may be used only for enciphering data |
| 1138 | while performing key agreement. |
Paul Kehrer | cecbbba | 2015-03-30 14:58:38 -0500 | [diff] [blame] | 1139 | |
| 1140 | :raises ValueError: This is raised if accessed when ``key_agreement`` |
| 1141 | is false. |
| 1142 | |
| 1143 | .. attribute:: decipher_only |
| 1144 | |
| 1145 | :type: bool |
| 1146 | |
Paul Kehrer | 738407b | 2015-04-01 22:39:02 -0500 | [diff] [blame] | 1147 | When this purposes is set to true and the ``key_agreement`` purpose is |
| 1148 | also set, the subject public key may be used only for deciphering data |
| 1149 | while performing key agreement. |
Paul Kehrer | cecbbba | 2015-03-30 14:58:38 -0500 | [diff] [blame] | 1150 | |
| 1151 | :raises ValueError: This is raised if accessed when ``key_agreement`` |
| 1152 | is false. |
| 1153 | |
| 1154 | |
Paul Kehrer | 8cf2642 | 2015-03-21 09:50:24 -0500 | [diff] [blame] | 1155 | .. class:: BasicConstraints |
| 1156 | |
| 1157 | .. versionadded:: 0.9 |
| 1158 | |
Paul Kehrer | 8589466 | 2015-03-22 13:19:31 -0500 | [diff] [blame] | 1159 | Basic constraints is an X.509 extension type that defines whether a given |
Paul Kehrer | 8cf2642 | 2015-03-21 09:50:24 -0500 | [diff] [blame] | 1160 | certificate is allowed to sign additional certificates and what path |
Paul Kehrer | b33de93 | 2015-08-06 23:41:05 +0100 | [diff] [blame] | 1161 | length restrictions may exist. |
Paul Kehrer | 8cf2642 | 2015-03-21 09:50:24 -0500 | [diff] [blame] | 1162 | |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1163 | .. attribute:: oid |
| 1164 | |
| 1165 | .. versionadded:: 1.0 |
| 1166 | |
| 1167 | :type: :class:`ObjectIdentifier` |
| 1168 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1169 | Returns :attr:`~cryptography.x509.oid.ExtensionOID.BASIC_CONSTRAINTS`. |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1170 | |
Paul Kehrer | 8cf2642 | 2015-03-21 09:50:24 -0500 | [diff] [blame] | 1171 | .. attribute:: ca |
| 1172 | |
| 1173 | :type: bool |
| 1174 | |
| 1175 | Whether the certificate can sign certificates. |
| 1176 | |
| 1177 | .. attribute:: path_length |
| 1178 | |
Paul Kehrer | fd1444c | 2015-03-21 19:47:05 -0500 | [diff] [blame] | 1179 | :type: int or None |
Paul Kehrer | 8cf2642 | 2015-03-21 09:50:24 -0500 | [diff] [blame] | 1180 | |
| 1181 | The maximum path length for certificates subordinate to this |
| 1182 | certificate. This attribute only has meaning if ``ca`` is true. |
| 1183 | If ``ca`` is true then a path length of None means there's no |
| 1184 | restriction on the number of subordinate CAs in the certificate chain. |
Alex Gaynor | 99c5f15 | 2015-05-03 10:01:04 -0400 | [diff] [blame] | 1185 | If it is zero or greater then it defines the maximum length for a |
| 1186 | subordinate CA's certificate chain. For example, a ``path_length`` of 1 |
| 1187 | means the certificate can sign a subordinate CA, but the subordinate CA |
| 1188 | is not allowed to create subordinates with ``ca`` set to true. |
Paul Kehrer | 8cf2642 | 2015-03-21 09:50:24 -0500 | [diff] [blame] | 1189 | |
Paul Kehrer | ffa2a15 | 2015-03-31 08:18:25 -0500 | [diff] [blame] | 1190 | .. class:: ExtendedKeyUsage |
| 1191 | |
| 1192 | .. versionadded:: 0.9 |
| 1193 | |
| 1194 | This extension indicates one or more purposes for which the certified |
| 1195 | public key may be used, in addition to or in place of the basic |
| 1196 | purposes indicated in the key usage extension. The object is |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1197 | iterable to obtain the list of |
| 1198 | :class:`~cryptography.x509.oid.ExtendedKeyUsageOID` OIDs present. |
Paul Kehrer | ffa2a15 | 2015-03-31 08:18:25 -0500 | [diff] [blame] | 1199 | |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1200 | .. attribute:: oid |
| 1201 | |
| 1202 | .. versionadded:: 1.0 |
| 1203 | |
| 1204 | :type: :class:`ObjectIdentifier` |
| 1205 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1206 | Returns :attr:`~cryptography.x509.oid.ExtensionOID.EXTENDED_KEY_USAGE`. |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1207 | |
| 1208 | |
Paul Kehrer | 4a1038e | 2015-05-18 10:28:31 -0700 | [diff] [blame] | 1209 | .. class:: OCSPNoCheck |
| 1210 | |
Paul Kehrer | 506a215 | 2015-05-26 08:01:18 -0500 | [diff] [blame] | 1211 | .. versionadded:: 1.0 |
Paul Kehrer | 4a1038e | 2015-05-18 10:28:31 -0700 | [diff] [blame] | 1212 | |
| 1213 | This presence of this extension indicates that an OCSP client can trust a |
| 1214 | responder for the lifetime of the responder's certificate. CAs issuing |
| 1215 | such a certificate should realize that a compromise of the responder's key |
| 1216 | is as serious as the compromise of a CA key used to sign CRLs, at least for |
| 1217 | the validity period of this certificate. CA's may choose to issue this type |
| 1218 | of certificate with a very short lifetime and renew it frequently. This |
| 1219 | extension is only relevant when the certificate is an authorized OCSP |
| 1220 | responder. |
| 1221 | |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1222 | .. attribute:: oid |
| 1223 | |
| 1224 | .. versionadded:: 1.0 |
| 1225 | |
| 1226 | :type: :class:`ObjectIdentifier` |
| 1227 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1228 | Returns :attr:`~cryptography.x509.oid.ExtensionOID.OCSP_NO_CHECK`. |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1229 | |
Paul Kehrer | e0017be | 2015-05-17 20:39:40 -0600 | [diff] [blame] | 1230 | .. class:: NameConstraints |
| 1231 | |
| 1232 | .. versionadded:: 1.0 |
| 1233 | |
| 1234 | The name constraints extension, which only has meaning in a CA certificate, |
| 1235 | defines a name space within which all subject names in certificates issued |
| 1236 | beneath the CA certificate must (or must not) be in. For specific details |
| 1237 | on the way this extension should be processed see :rfc:`5280`. |
| 1238 | |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1239 | .. attribute:: oid |
| 1240 | |
| 1241 | .. versionadded:: 1.0 |
| 1242 | |
| 1243 | :type: :class:`ObjectIdentifier` |
| 1244 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1245 | Returns :attr:`~cryptography.x509.oid.ExtensionOID.NAME_CONSTRAINTS`. |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1246 | |
Paul Kehrer | e0017be | 2015-05-17 20:39:40 -0600 | [diff] [blame] | 1247 | .. attribute:: permitted_subtrees |
| 1248 | |
| 1249 | :type: list of :class:`GeneralName` objects or None |
| 1250 | |
| 1251 | The set of permitted name patterns. If a name matches this and an |
| 1252 | element in ``excluded_subtrees`` it is invalid. At least one of |
| 1253 | ``permitted_subtrees`` and ``excluded_subtrees`` will be non-None. |
| 1254 | |
| 1255 | .. attribute:: excluded_subtrees |
| 1256 | |
| 1257 | :type: list of :class:`GeneralName` objects or None |
| 1258 | |
| 1259 | Any name matching a restriction in the ``excluded_subtrees`` field is |
| 1260 | invalid regardless of information appearing in the |
| 1261 | ``permitted_subtrees``. At least one of ``permitted_subtrees`` and |
| 1262 | ``excluded_subtrees`` will be non-None. |
| 1263 | |
Paul Kehrer | 2eb4ed9 | 2015-04-11 15:33:45 -0400 | [diff] [blame] | 1264 | .. class:: AuthorityKeyIdentifier |
| 1265 | |
| 1266 | .. versionadded:: 0.9 |
| 1267 | |
| 1268 | The authority key identifier extension provides a means of identifying the |
| 1269 | public key corresponding to the private key used to sign a certificate. |
Paul Kehrer | 8c8cd72 | 2015-04-19 09:15:04 -0500 | [diff] [blame] | 1270 | This extension is typically used to assist in determining the appropriate |
| 1271 | certificate chain. For more information about generation and use of this |
| 1272 | extension see `RFC 5280 section 4.2.1.1`_. |
Paul Kehrer | 2eb4ed9 | 2015-04-11 15:33:45 -0400 | [diff] [blame] | 1273 | |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1274 | .. attribute:: oid |
| 1275 | |
| 1276 | .. versionadded:: 1.0 |
| 1277 | |
| 1278 | :type: :class:`ObjectIdentifier` |
| 1279 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1280 | Returns |
| 1281 | :attr:`~cryptography.x509.oid.ExtensionOID.AUTHORITY_KEY_IDENTIFIER`. |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1282 | |
Paul Kehrer | 2eb4ed9 | 2015-04-11 15:33:45 -0400 | [diff] [blame] | 1283 | .. attribute:: key_identifier |
| 1284 | |
| 1285 | :type: bytes |
| 1286 | |
Paul Kehrer | 9104b1d | 2015-04-18 09:23:44 -0500 | [diff] [blame] | 1287 | A value derived from the public key used to verify the certificate's |
Paul Kehrer | 8c8cd72 | 2015-04-19 09:15:04 -0500 | [diff] [blame] | 1288 | signature. |
Paul Kehrer | 9104b1d | 2015-04-18 09:23:44 -0500 | [diff] [blame] | 1289 | |
Paul Kehrer | 2eb4ed9 | 2015-04-11 15:33:45 -0400 | [diff] [blame] | 1290 | .. attribute:: authority_cert_issuer |
| 1291 | |
| 1292 | :type: :class:`Name` or None |
| 1293 | |
Paul Kehrer | 9104b1d | 2015-04-18 09:23:44 -0500 | [diff] [blame] | 1294 | The :class:`Name` of the issuer's issuer. |
| 1295 | |
Paul Kehrer | 2eb4ed9 | 2015-04-11 15:33:45 -0400 | [diff] [blame] | 1296 | .. attribute:: authority_cert_serial_number |
| 1297 | |
| 1298 | :type: int or None |
| 1299 | |
Paul Kehrer | 9104b1d | 2015-04-18 09:23:44 -0500 | [diff] [blame] | 1300 | The serial number of the issuer's issuer. |
| 1301 | |
Paul Kehrer | 253929a | 2015-08-05 17:30:39 +0100 | [diff] [blame] | 1302 | .. classmethod:: from_issuer_public_key(public_key) |
| 1303 | |
| 1304 | .. versionadded:: 1.0 |
| 1305 | |
| 1306 | Creates a new AuthorityKeyIdentifier instance using the public key |
| 1307 | provided to generate the appropriate digest. This should be the |
Paul Kehrer | 26ac47f | 2015-08-08 15:20:52 -0500 | [diff] [blame] | 1308 | **issuer's public key**. The resulting object will contain |
| 1309 | :attr:`~cryptography.x509.AuthorityKeyIdentifier.key_identifier`, but |
| 1310 | :attr:`~cryptography.x509.AuthorityKeyIdentifier.authority_cert_issuer` |
| 1311 | and |
| 1312 | :attr:`~cryptography.x509.AuthorityKeyIdentifier.authority_cert_serial_number` |
| 1313 | will be None. |
| 1314 | The generated ``key_identifier`` is the SHA1 hash of the ``subjectPublicKey`` |
| 1315 | ASN.1 bit string. This is the first recommendation in :rfc:`5280` |
Paul Kehrer | 253929a | 2015-08-05 17:30:39 +0100 | [diff] [blame] | 1316 | section 4.2.1.2. |
| 1317 | |
Paul Kehrer | cc67182 | 2015-08-08 15:41:54 -0500 | [diff] [blame] | 1318 | :param public_key: One of |
| 1319 | :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey` |
| 1320 | , |
| 1321 | :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey` |
| 1322 | , or |
| 1323 | :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey`. |
Paul Kehrer | 253929a | 2015-08-05 17:30:39 +0100 | [diff] [blame] | 1324 | |
| 1325 | .. doctest:: |
| 1326 | |
| 1327 | >>> from cryptography import x509 |
| 1328 | >>> from cryptography.hazmat.backends import default_backend |
Paul Kehrer | cc67182 | 2015-08-08 15:41:54 -0500 | [diff] [blame] | 1329 | >>> issuer_cert = x509.load_pem_x509_certificate(pem_data, default_backend()) |
| 1330 | >>> x509.AuthorityKeyIdentifier.from_issuer_public_key(issuer_cert.public_key()) |
Paul Kehrer | 253929a | 2015-08-05 17:30:39 +0100 | [diff] [blame] | 1331 | <AuthorityKeyIdentifier(key_identifier='X\x01\x84$\x1b\xbc+R\x94J=\xa5\x10r\x14Q\xf5\xaf:\xc9', authority_cert_issuer=None, authority_cert_serial_number=None)> |
| 1332 | |
Paul Kehrer | 1eb82a6 | 2015-03-31 20:00:33 -0500 | [diff] [blame] | 1333 | .. class:: SubjectKeyIdentifier |
| 1334 | |
| 1335 | .. versionadded:: 0.9 |
| 1336 | |
| 1337 | The subject key identifier extension provides a means of identifying |
| 1338 | certificates that contain a particular public key. |
| 1339 | |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1340 | .. attribute:: oid |
| 1341 | |
| 1342 | .. versionadded:: 1.0 |
| 1343 | |
| 1344 | :type: :class:`ObjectIdentifier` |
| 1345 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1346 | Returns |
| 1347 | :attr:`~cryptography.x509.oid.ExtensionOID.SUBJECT_KEY_IDENTIFIER`. |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1348 | |
Paul Kehrer | 1eb82a6 | 2015-03-31 20:00:33 -0500 | [diff] [blame] | 1349 | .. attribute:: digest |
| 1350 | |
| 1351 | :type: bytes |
| 1352 | |
| 1353 | The binary value of the identifier. |
| 1354 | |
Paul Kehrer | d4a7f06 | 2015-08-05 18:32:18 +0100 | [diff] [blame] | 1355 | .. classmethod:: from_public_key(public_key) |
Paul Kehrer | f22f612 | 2015-08-05 12:57:13 +0100 | [diff] [blame] | 1356 | |
| 1357 | .. versionadded:: 1.0 |
| 1358 | |
| 1359 | Creates a new SubjectKeyIdentifier instance using the public key |
| 1360 | provided to generate the appropriate digest. This should be the public |
Paul Kehrer | eb9ec00 | 2015-08-08 10:03:02 -0500 | [diff] [blame] | 1361 | key that is in the certificate. The generated digest is the SHA1 hash |
| 1362 | of the ``subjectPublicKey`` ASN.1 bit string. This is the first |
| 1363 | recommendation in :rfc:`5280` section 4.2.1.2. |
Paul Kehrer | f22f612 | 2015-08-05 12:57:13 +0100 | [diff] [blame] | 1364 | |
| 1365 | :param public_key: One of |
| 1366 | :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey` |
| 1367 | , |
| 1368 | :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey` |
| 1369 | , or |
| 1370 | :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey`. |
| 1371 | |
Paul Kehrer | 253929a | 2015-08-05 17:30:39 +0100 | [diff] [blame] | 1372 | .. doctest:: |
| 1373 | |
| 1374 | >>> from cryptography import x509 |
| 1375 | >>> from cryptography.hazmat.backends import default_backend |
Paul Kehrer | cc67182 | 2015-08-08 15:41:54 -0500 | [diff] [blame] | 1376 | >>> csr = x509.load_pem_x509_csr(pem_req_data, default_backend()) |
| 1377 | >>> x509.SubjectKeyIdentifier.from_public_key(csr.public_key()) |
| 1378 | <SubjectKeyIdentifier(digest='\xdb\xaa\xf0\x06\x11\xdbD\xfe\xbf\x93\x03\x8av\x88WP7\xa6\x91\xf7')> |
Paul Kehrer | 253929a | 2015-08-05 17:30:39 +0100 | [diff] [blame] | 1379 | |
Paul Kehrer | 31bdf79 | 2015-03-25 14:11:00 -0500 | [diff] [blame] | 1380 | .. class:: SubjectAlternativeName |
| 1381 | |
| 1382 | .. versionadded:: 0.9 |
| 1383 | |
| 1384 | Subject alternative name is an X.509 extension that provides a list of |
| 1385 | :ref:`general name <general_name_classes>` instances that provide a set |
| 1386 | of identities for which the certificate is valid. The object is iterable to |
| 1387 | get every element. |
| 1388 | |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1389 | .. attribute:: oid |
| 1390 | |
| 1391 | .. versionadded:: 1.0 |
| 1392 | |
| 1393 | :type: :class:`ObjectIdentifier` |
| 1394 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1395 | Returns |
| 1396 | :attr:`~cryptography.x509.oid.ExtensionOID.SUBJECT_ALTERNATIVE_NAME`. |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1397 | |
Paul Kehrer | 31bdf79 | 2015-03-25 14:11:00 -0500 | [diff] [blame] | 1398 | .. method:: get_values_for_type(type) |
| 1399 | |
| 1400 | :param type: A :class:`GeneralName` provider. This is one of the |
| 1401 | :ref:`general name classes <general_name_classes>`. |
| 1402 | |
| 1403 | :returns: A list of values extracted from the matched general names. |
Joshua Tauberer | d2afad3 | 2015-07-06 22:37:53 +0000 | [diff] [blame] | 1404 | The type of the returned values depends on the :class:`GeneralName`. |
Paul Kehrer | 31bdf79 | 2015-03-25 14:11:00 -0500 | [diff] [blame] | 1405 | |
Paul Kehrer | 93ae805 | 2015-05-02 23:18:09 -0500 | [diff] [blame] | 1406 | .. doctest:: |
| 1407 | |
| 1408 | >>> from cryptography import x509 |
| 1409 | >>> from cryptography.hazmat.backends import default_backend |
| 1410 | >>> from cryptography.hazmat.primitives import hashes |
| 1411 | >>> cert = x509.load_pem_x509_certificate(cryptography_cert_pem, default_backend()) |
Paul Kehrer | d0cd507 | 2015-05-02 23:27:00 -0500 | [diff] [blame] | 1412 | >>> # Get the subjectAltName extension from the certificate |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1413 | >>> ext = cert.extensions.get_extension_for_oid(ExtensionOID.SUBJECT_ALTERNATIVE_NAME) |
Paul Kehrer | d0cd507 | 2015-05-02 23:27:00 -0500 | [diff] [blame] | 1414 | >>> # Get the dNSName entries from the SAN extension |
| 1415 | >>> ext.value.get_values_for_type(x509.DNSName) |
Paul Kehrer | 93ae805 | 2015-05-02 23:18:09 -0500 | [diff] [blame] | 1416 | [u'www.cryptography.io', u'cryptography.io'] |
| 1417 | |
Paul Kehrer | 8cf2642 | 2015-03-21 09:50:24 -0500 | [diff] [blame] | 1418 | |
Paul Kehrer | 99125c9 | 2015-06-07 18:37:10 -0500 | [diff] [blame] | 1419 | .. class:: IssuerAlternativeName |
| 1420 | |
| 1421 | .. versionadded:: 1.0 |
| 1422 | |
| 1423 | Issuer alternative name is an X.509 extension that provides a list of |
| 1424 | :ref:`general name <general_name_classes>` instances that provide a set |
| 1425 | of identities for the certificate issuer. The object is iterable to |
| 1426 | get every element. |
| 1427 | |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1428 | .. attribute:: oid |
| 1429 | |
| 1430 | .. versionadded:: 1.0 |
| 1431 | |
| 1432 | :type: :class:`ObjectIdentifier` |
| 1433 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1434 | Returns |
| 1435 | :attr:`~cryptography.x509.oid.ExtensionOID.ISSUER_ALTERNATIVE_NAME`. |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1436 | |
Paul Kehrer | 99125c9 | 2015-06-07 18:37:10 -0500 | [diff] [blame] | 1437 | .. method:: get_values_for_type(type) |
| 1438 | |
| 1439 | :param type: A :class:`GeneralName` provider. This is one of the |
| 1440 | :ref:`general name classes <general_name_classes>`. |
| 1441 | |
| 1442 | :returns: A list of values extracted from the matched general names. |
| 1443 | |
| 1444 | |
Paul Kehrer | 3e6d558 | 2015-05-02 21:57:56 -0500 | [diff] [blame] | 1445 | .. class:: AuthorityInformationAccess |
| 1446 | |
| 1447 | .. versionadded:: 0.9 |
| 1448 | |
| 1449 | The authority information access extension indicates how to access |
| 1450 | information and services for the issuer of the certificate in which |
| 1451 | the extension appears. Information and services may include online |
| 1452 | validation services (such as OCSP) and issuer data. It is an iterable, |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1453 | containing one or more :class:`~cryptography.x509.AccessDescription` |
| 1454 | instances. |
Paul Kehrer | 3e6d558 | 2015-05-02 21:57:56 -0500 | [diff] [blame] | 1455 | |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1456 | .. attribute:: oid |
| 1457 | |
| 1458 | .. versionadded:: 1.0 |
| 1459 | |
| 1460 | :type: :class:`ObjectIdentifier` |
| 1461 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1462 | Returns |
| 1463 | :attr:`~cryptography.x509.oid.ExtensionOID.AUTHORITY_INFORMATION_ACCESS`. |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1464 | |
Paul Kehrer | 3e6d558 | 2015-05-02 21:57:56 -0500 | [diff] [blame] | 1465 | |
| 1466 | .. class:: AccessDescription |
| 1467 | |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1468 | .. versionadded:: 0.9 |
| 1469 | |
Paul Kehrer | 3e6d558 | 2015-05-02 21:57:56 -0500 | [diff] [blame] | 1470 | .. attribute:: access_method |
| 1471 | |
| 1472 | :type: :class:`ObjectIdentifier` |
| 1473 | |
Paul Kehrer | f506bca | 2015-05-02 22:31:47 -0500 | [diff] [blame] | 1474 | The access method defines what the ``access_location`` means. It must |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1475 | be either |
| 1476 | :attr:`~cryptography.x509.oid.AuthorityInformationAccessOID.OCSP` or |
| 1477 | :attr:`~cryptography.x509.oid.AuthorityInformationAccessOID.CA_ISSUERS`. |
| 1478 | If it is |
| 1479 | :attr:`~cryptography.x509.oid.AuthorityInformationAccessOID.OCSP` |
| 1480 | the access location will be where to obtain OCSP |
| 1481 | information for the certificate. If it is |
| 1482 | :attr:`~cryptography.x509.oid.AuthorityInformationAccessOID.CA_ISSUERS` |
| 1483 | the access location will provide additional information about the |
| 1484 | issuing certificate. |
Paul Kehrer | 3e6d558 | 2015-05-02 21:57:56 -0500 | [diff] [blame] | 1485 | |
| 1486 | .. attribute:: access_location |
| 1487 | |
| 1488 | :type: :class:`GeneralName` |
| 1489 | |
Paul Kehrer | f506bca | 2015-05-02 22:31:47 -0500 | [diff] [blame] | 1490 | Where to access the information defined by the access method. |
| 1491 | |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1492 | .. class:: CRLDistributionPoints |
| 1493 | |
| 1494 | .. versionadded:: 0.9 |
| 1495 | |
| 1496 | The CRL distribution points extension identifies how CRL information is |
| 1497 | obtained. It is an iterable, containing one or more |
| 1498 | :class:`DistributionPoint` instances. |
| 1499 | |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1500 | .. attribute:: oid |
| 1501 | |
| 1502 | .. versionadded:: 1.0 |
| 1503 | |
| 1504 | :type: :class:`ObjectIdentifier` |
| 1505 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1506 | Returns |
| 1507 | :attr:`~cryptography.x509.oid.ExtensionOID.CRL_DISTRIBUTION_POINTS`. |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1508 | |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1509 | .. class:: DistributionPoint |
| 1510 | |
| 1511 | .. versionadded:: 0.9 |
| 1512 | |
Paul Kehrer | 4e8dacd | 2015-05-09 10:38:23 -0500 | [diff] [blame] | 1513 | .. attribute:: full_name |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1514 | |
Paul Kehrer | 4e8dacd | 2015-05-09 10:38:23 -0500 | [diff] [blame] | 1515 | :type: list of :class:`GeneralName` instances or None |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1516 | |
Paul Kehrer | f2c072b | 2015-05-09 17:04:28 -0500 | [diff] [blame] | 1517 | This field describes methods to retrieve the CRL. At most one of |
| 1518 | ``full_name`` or ``relative_name`` will be non-None. |
Paul Kehrer | 4e8dacd | 2015-05-09 10:38:23 -0500 | [diff] [blame] | 1519 | |
| 1520 | .. attribute:: relative_name |
| 1521 | |
| 1522 | :type: :class:`Name` or None |
| 1523 | |
| 1524 | This field describes methods to retrieve the CRL relative to the CRL |
Paul Kehrer | f2c072b | 2015-05-09 17:04:28 -0500 | [diff] [blame] | 1525 | issuer. At most one of ``full_name`` or ``relative_name`` will be |
| 1526 | non-None. |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1527 | |
| 1528 | .. attribute:: crl_issuer |
| 1529 | |
| 1530 | :type: list of :class:`GeneralName` instances or None |
| 1531 | |
| 1532 | Information about the issuer of the CRL. |
| 1533 | |
| 1534 | .. attribute:: reasons |
| 1535 | |
Paul Kehrer | 3fd0260 | 2015-05-09 19:46:13 -0500 | [diff] [blame] | 1536 | :type: frozenset of :class:`ReasonFlags` or None |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1537 | |
| 1538 | The reasons a given distribution point may be used for when performing |
| 1539 | revocation checks. |
| 1540 | |
| 1541 | .. class:: ReasonFlags |
| 1542 | |
| 1543 | .. versionadded:: 0.9 |
| 1544 | |
Paul Kehrer | 4e8dacd | 2015-05-09 10:38:23 -0500 | [diff] [blame] | 1545 | An enumeration for CRL reasons. |
| 1546 | |
| 1547 | .. attribute:: unspecified |
| 1548 | |
| 1549 | It is unspecified why the certificate was revoked. This reason cannot |
| 1550 | be used as a reason flag in a :class:`DistributionPoint`. |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1551 | |
| 1552 | .. attribute:: key_compromise |
| 1553 | |
Paul Kehrer | 4e8dacd | 2015-05-09 10:38:23 -0500 | [diff] [blame] | 1554 | This reason indicates that the private key was compromised. |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1555 | |
| 1556 | .. attribute:: ca_compromise |
| 1557 | |
Paul Kehrer | 4e8dacd | 2015-05-09 10:38:23 -0500 | [diff] [blame] | 1558 | This reason indicates that the CA issuing the certificate was |
| 1559 | compromised. |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1560 | |
| 1561 | .. attribute:: affiliation_changed |
| 1562 | |
Paul Kehrer | 4e8dacd | 2015-05-09 10:38:23 -0500 | [diff] [blame] | 1563 | This reason indicates that the subject's name or other information has |
| 1564 | changed. |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1565 | |
| 1566 | .. attribute:: superseded |
| 1567 | |
Paul Kehrer | 4e8dacd | 2015-05-09 10:38:23 -0500 | [diff] [blame] | 1568 | This reason indicates that a certificate has been superseded. |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1569 | |
| 1570 | .. attribute:: cessation_of_operation |
| 1571 | |
Paul Kehrer | 4e8dacd | 2015-05-09 10:38:23 -0500 | [diff] [blame] | 1572 | This reason indicates that the certificate is no longer required. |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1573 | |
| 1574 | .. attribute:: certificate_hold |
| 1575 | |
Paul Kehrer | 4e8dacd | 2015-05-09 10:38:23 -0500 | [diff] [blame] | 1576 | This reason indicates that the certificate is on hold. |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1577 | |
| 1578 | .. attribute:: privilege_withdrawn |
| 1579 | |
Paul Kehrer | 4e8dacd | 2015-05-09 10:38:23 -0500 | [diff] [blame] | 1580 | This reason indicates that the privilege granted by this certificate |
| 1581 | have been withdrawn. |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1582 | |
| 1583 | .. attribute:: aa_compromise |
| 1584 | |
Paul Kehrer | 4e8dacd | 2015-05-09 10:38:23 -0500 | [diff] [blame] | 1585 | When an attribute authority has been compromised. |
| 1586 | |
| 1587 | .. attribute:: remove_from_crl |
| 1588 | |
| 1589 | This reason indicates that the certificate was on hold and should be |
| 1590 | removed from the CRL. This reason cannot be used as a reason flag |
| 1591 | in a :class:`DistributionPoint`. |
Paul Kehrer | 5a48552 | 2015-05-06 00:29:12 -0500 | [diff] [blame] | 1592 | |
Paul Kehrer | 16fae76 | 2015-05-01 23:14:20 -0500 | [diff] [blame] | 1593 | .. class:: InhibitAnyPolicy |
| 1594 | |
| 1595 | .. versionadded:: 1.0 |
| 1596 | |
| 1597 | The inhibit ``anyPolicy`` extension indicates that the special OID |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1598 | :attr:`~cryptography.x509.oid.CertificatePoliciesOID.ANY_POLICY`, is not |
| 1599 | considered an explicit match for other :class:`CertificatePolicies` except |
| 1600 | when it appears in an intermediate self-issued CA certificate. The value |
| 1601 | indicates the number of additional non-self-issued certificates that may |
| 1602 | appear in the path before |
| 1603 | :attr:`~cryptography.x509.oid.CertificatePoliciesOID.ANY_POLICY` is no |
| 1604 | longer permitted. For example, a value of one indicates that |
| 1605 | :attr:`~cryptography.x509.oid.CertificatePoliciesOID.ANY_POLICY` may be |
| 1606 | processed in certificates issued by the subject of this certificate, but |
| 1607 | not in additional certificates in the path. |
Paul Kehrer | 16fae76 | 2015-05-01 23:14:20 -0500 | [diff] [blame] | 1608 | |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1609 | .. attribute:: oid |
| 1610 | |
| 1611 | .. versionadded:: 1.0 |
| 1612 | |
| 1613 | :type: :class:`ObjectIdentifier` |
| 1614 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1615 | Returns |
| 1616 | :attr:`~cryptography.x509.oid.ExtensionOID.INHIBIT_ANY_POLICY`. |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1617 | |
Paul Kehrer | 16fae76 | 2015-05-01 23:14:20 -0500 | [diff] [blame] | 1618 | .. attribute:: skip_certs |
| 1619 | |
| 1620 | :type: int |
| 1621 | |
Paul Kehrer | 0d21092 | 2015-04-28 17:31:07 -0500 | [diff] [blame] | 1622 | .. class:: CertificatePolicies |
| 1623 | |
| 1624 | .. versionadded:: 0.9 |
| 1625 | |
Paul Kehrer | 2e87974 | 2015-05-02 23:09:56 -0500 | [diff] [blame] | 1626 | The certificate policies extension is an iterable, containing one or more |
| 1627 | :class:`PolicyInformation` instances. |
Paul Kehrer | 0d21092 | 2015-04-28 17:31:07 -0500 | [diff] [blame] | 1628 | |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1629 | .. attribute:: oid |
| 1630 | |
| 1631 | .. versionadded:: 1.0 |
| 1632 | |
| 1633 | :type: :class:`ObjectIdentifier` |
| 1634 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1635 | Returns |
| 1636 | :attr:`~cryptography.x509.oid.ExtensionOID.CERTIFICATE_POLICIES`. |
Paul Kehrer | 822f3d3 | 2015-08-06 11:47:32 +0100 | [diff] [blame] | 1637 | |
Paul Kehrer | 0d21092 | 2015-04-28 17:31:07 -0500 | [diff] [blame] | 1638 | Certificate Policies Classes |
| 1639 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 1640 | |
| 1641 | These classes may be present within a :class:`CertificatePolicies` instance. |
| 1642 | |
| 1643 | .. class:: PolicyInformation |
| 1644 | |
| 1645 | .. versionadded:: 0.9 |
| 1646 | |
| 1647 | Contains a policy identifier and an optional list of qualifiers. |
| 1648 | |
| 1649 | .. attribute:: policy_identifier |
| 1650 | |
| 1651 | :type: :class:`ObjectIdentifier` |
| 1652 | |
| 1653 | .. attribute:: policy_qualifiers |
| 1654 | |
| 1655 | :type: list |
| 1656 | |
Paul Kehrer | ba35b3b | 2015-05-10 13:07:59 -0500 | [diff] [blame] | 1657 | A list consisting of :term:`text` and/or :class:`UserNotice` objects. |
Paul Kehrer | 3f8ddeb | 2015-05-11 00:25:36 -0500 | [diff] [blame] | 1658 | If the value is text it is a pointer to the practice statement |
| 1659 | published by the certificate authority. If it is a user notice it is |
| 1660 | meant for display to the relying party when the certificate is |
| 1661 | used. |
Paul Kehrer | 2e87974 | 2015-05-02 23:09:56 -0500 | [diff] [blame] | 1662 | |
Paul Kehrer | 0d21092 | 2015-04-28 17:31:07 -0500 | [diff] [blame] | 1663 | .. class:: UserNotice |
| 1664 | |
| 1665 | .. versionadded:: 0.9 |
| 1666 | |
Paul Kehrer | 2e87974 | 2015-05-02 23:09:56 -0500 | [diff] [blame] | 1667 | User notices are intended for display to a relying party when a certificate |
| 1668 | is used. In practice, few if any UIs expose this data and it is a rarely |
| 1669 | encoded component. |
| 1670 | |
Paul Kehrer | 0d21092 | 2015-04-28 17:31:07 -0500 | [diff] [blame] | 1671 | .. attribute:: notice_reference |
| 1672 | |
| 1673 | :type: :class:`NoticeReference` or None |
| 1674 | |
Paul Kehrer | 2e87974 | 2015-05-02 23:09:56 -0500 | [diff] [blame] | 1675 | The notice reference field names an organization and identifies, |
| 1676 | by number, a particular statement prepared by that organization. |
| 1677 | |
Paul Kehrer | 0d21092 | 2015-04-28 17:31:07 -0500 | [diff] [blame] | 1678 | .. attribute:: explicit_text |
| 1679 | |
Paul Kehrer | 2e87974 | 2015-05-02 23:09:56 -0500 | [diff] [blame] | 1680 | This field includes an arbitrary textual statement directly in the |
| 1681 | certificate. |
| 1682 | |
Paul Kehrer | 0d21092 | 2015-04-28 17:31:07 -0500 | [diff] [blame] | 1683 | :type: :term:`text` |
| 1684 | |
| 1685 | .. class:: NoticeReference |
| 1686 | |
Paul Kehrer | 2e87974 | 2015-05-02 23:09:56 -0500 | [diff] [blame] | 1687 | Notice reference can name an organization and provide information about |
| 1688 | notices related to the certificate. For example, it might identify the |
| 1689 | organization name and notice number 1. Application software could |
| 1690 | have a notice file containing the current set of notices for the named |
| 1691 | organization; the application would then extract the notice text from the |
| 1692 | file and display it. In practice this is rarely seen. |
| 1693 | |
Paul Kehrer | 0d21092 | 2015-04-28 17:31:07 -0500 | [diff] [blame] | 1694 | .. versionadded:: 0.9 |
| 1695 | |
| 1696 | .. attribute:: organization |
| 1697 | |
Paul Kehrer | 66c6170 | 2015-05-12 16:39:18 -0500 | [diff] [blame] | 1698 | :type: :term:`text` |
Paul Kehrer | 0d21092 | 2015-04-28 17:31:07 -0500 | [diff] [blame] | 1699 | |
Paul Kehrer | 3f8ddeb | 2015-05-11 00:25:36 -0500 | [diff] [blame] | 1700 | .. attribute:: notice_numbers |
Paul Kehrer | 0d21092 | 2015-04-28 17:31:07 -0500 | [diff] [blame] | 1701 | |
Paul Kehrer | 66c6170 | 2015-05-12 16:39:18 -0500 | [diff] [blame] | 1702 | :type: list |
Paul Kehrer | 0d21092 | 2015-04-28 17:31:07 -0500 | [diff] [blame] | 1703 | |
Paul Kehrer | 66c6170 | 2015-05-12 16:39:18 -0500 | [diff] [blame] | 1704 | A list of integers. |
Paul Kehrer | 0d21092 | 2015-04-28 17:31:07 -0500 | [diff] [blame] | 1705 | |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1706 | Object Identifiers |
| 1707 | ~~~~~~~~~~~~~~~~~~ |
| 1708 | |
Paul Kehrer | 4bb4649 | 2015-02-07 16:59:14 -0600 | [diff] [blame] | 1709 | X.509 elements are frequently identified by :class:`ObjectIdentifier` |
| 1710 | instances. The following common OIDs are available as constants. |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1711 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1712 | .. currentmodule:: cryptography.x509.oid |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1713 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1714 | .. class:: NameOID |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1715 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1716 | These OIDs are typically seen in X.509 names. |
Paul Kehrer | 858b9b7 | 2015-02-05 09:50:31 -0600 | [diff] [blame] | 1717 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1718 | .. versionadded:: 1.0 |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1719 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1720 | .. attribute:: COMMON_NAME |
Paul Kehrer | 858b9b7 | 2015-02-05 09:50:31 -0600 | [diff] [blame] | 1721 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1722 | Corresponds to the dotted string ``"2.5.4.3"``. Historically the domain |
| 1723 | name would be encoded here for server certificates. :rfc:`2818` |
| 1724 | deprecates this practice and names of that type should now be located |
| 1725 | in a :class:`~cryptography.x509.SubjectAlternativeName` extension. |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1726 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1727 | .. attribute:: COUNTRY_NAME |
Paul Kehrer | 858b9b7 | 2015-02-05 09:50:31 -0600 | [diff] [blame] | 1728 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1729 | Corresponds to the dotted string ``"2.5.4.6"``. |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1730 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1731 | .. attribute:: LOCALITY_NAME |
Paul Kehrer | 858b9b7 | 2015-02-05 09:50:31 -0600 | [diff] [blame] | 1732 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1733 | Corresponds to the dotted string ``"2.5.4.7"``. |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1734 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1735 | .. attribute:: STATE_OR_PROVINCE_NAME |
Paul Kehrer | 858b9b7 | 2015-02-05 09:50:31 -0600 | [diff] [blame] | 1736 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1737 | Corresponds to the dotted string ``"2.5.4.8"``. |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1738 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1739 | .. attribute:: ORGANIZATION_NAME |
Paul Kehrer | 858b9b7 | 2015-02-05 09:50:31 -0600 | [diff] [blame] | 1740 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1741 | Corresponds to the dotted string ``"2.5.4.10"``. |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1742 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1743 | .. attribute:: ORGANIZATIONAL_UNIT_NAME |
Paul Kehrer | 858b9b7 | 2015-02-05 09:50:31 -0600 | [diff] [blame] | 1744 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1745 | Corresponds to the dotted string ``"2.5.4.11"``. |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1746 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1747 | .. attribute:: SERIAL_NUMBER |
Paul Kehrer | 858b9b7 | 2015-02-05 09:50:31 -0600 | [diff] [blame] | 1748 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1749 | Corresponds to the dotted string ``"2.5.4.5"``. This is distinct from |
| 1750 | the serial number of the certificate itself (which can be obtained with |
| 1751 | :func:`~cryptography.x509.Certificate.serial`). |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1752 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1753 | .. attribute:: SURNAME |
Paul Kehrer | 858b9b7 | 2015-02-05 09:50:31 -0600 | [diff] [blame] | 1754 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1755 | Corresponds to the dotted string ``"2.5.4.4"``. |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1756 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1757 | .. attribute:: GIVEN_NAME |
Paul Kehrer | 858b9b7 | 2015-02-05 09:50:31 -0600 | [diff] [blame] | 1758 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1759 | Corresponds to the dotted string ``"2.5.4.42"``. |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1760 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1761 | .. attribute:: TITLE |
Paul Kehrer | 858b9b7 | 2015-02-05 09:50:31 -0600 | [diff] [blame] | 1762 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1763 | Corresponds to the dotted string ``"2.5.4.12"``. |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1764 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1765 | .. attribute:: GENERATION_QUALIFIER |
Paul Kehrer | 858b9b7 | 2015-02-05 09:50:31 -0600 | [diff] [blame] | 1766 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1767 | Corresponds to the dotted string ``"2.5.4.44"``. |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1768 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1769 | .. attribute:: DN_QUALIFIER |
Paul Kehrer | 858b9b7 | 2015-02-05 09:50:31 -0600 | [diff] [blame] | 1770 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1771 | Corresponds to the dotted string ``"2.5.4.46"``. This specifies |
| 1772 | disambiguating information to add to the relative distinguished name of an |
| 1773 | entry. See :rfc:`2256`. |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1774 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1775 | .. attribute:: PSEUDONYM |
Paul Kehrer | 858b9b7 | 2015-02-05 09:50:31 -0600 | [diff] [blame] | 1776 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1777 | Corresponds to the dotted string ``"2.5.4.65"``. |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 1778 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1779 | .. attribute:: DOMAIN_COMPONENT |
Paul Kehrer | 858b9b7 | 2015-02-05 09:50:31 -0600 | [diff] [blame] | 1780 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1781 | Corresponds to the dotted string ``"0.9.2342.19200300.100.1.25"``. A string |
| 1782 | holding one component of a domain name. See :rfc:`4519`. |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1783 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1784 | .. attribute:: EMAIL_ADDRESS |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1785 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1786 | Corresponds to the dotted string ``"1.2.840.113549.1.9.1"``. |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1787 | |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1788 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1789 | .. class:: SignatureAlgorithmOID |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1790 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1791 | .. versionadded:: 1.0 |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1792 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1793 | .. attribute:: RSA_WITH_MD5 |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1794 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1795 | Corresponds to the dotted string ``"1.2.840.113549.1.1.4"``. This is |
| 1796 | an MD5 digest signed by an RSA key. |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1797 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1798 | .. attribute:: RSA_WITH_SHA1 |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1799 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1800 | Corresponds to the dotted string ``"1.2.840.113549.1.1.5"``. This is |
| 1801 | a SHA1 digest signed by an RSA key. |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1802 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1803 | .. attribute:: RSA_WITH_SHA224 |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1804 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1805 | Corresponds to the dotted string ``"1.2.840.113549.1.1.14"``. This is |
| 1806 | a SHA224 digest signed by an RSA key. |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1807 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1808 | .. attribute:: RSA_WITH_SHA256 |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1809 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1810 | Corresponds to the dotted string ``"1.2.840.113549.1.1.11"``. This is |
| 1811 | a SHA256 digest signed by an RSA key. |
Alex Gaynor | 3aadabf | 2015-06-23 22:06:21 -0400 | [diff] [blame] | 1812 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1813 | .. attribute:: RSA_WITH_SHA384 |
Alex Gaynor | 3aadabf | 2015-06-23 22:06:21 -0400 | [diff] [blame] | 1814 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1815 | Corresponds to the dotted string ``"1.2.840.113549.1.1.12"``. This is |
| 1816 | a SHA384 digest signed by an RSA key. |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1817 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1818 | .. attribute:: RSA_WITH_SHA512 |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1819 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1820 | Corresponds to the dotted string ``"1.2.840.113549.1.1.13"``. This is |
| 1821 | a SHA512 digest signed by an RSA key. |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1822 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1823 | .. attribute:: ECDSA_WITH_SHA1 |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1824 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1825 | Corresponds to the dotted string ``"1.2.840.10045.4.1"``. This is a SHA1 |
| 1826 | digest signed by an ECDSA key. |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1827 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1828 | .. attribute:: ECDSA_WITH_SHA224 |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1829 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1830 | Corresponds to the dotted string ``"1.2.840.10045.4.3.1"``. This is |
| 1831 | a SHA224 digest signed by an ECDSA key. |
| 1832 | |
| 1833 | .. attribute:: ECDSA_WITH_SHA256 |
| 1834 | |
| 1835 | Corresponds to the dotted string ``"1.2.840.10045.4.3.2"``. This is |
| 1836 | a SHA256 digest signed by an ECDSA key. |
| 1837 | |
| 1838 | .. attribute:: ECDSA_WITH_SHA384 |
| 1839 | |
| 1840 | Corresponds to the dotted string ``"1.2.840.10045.4.3.3"``. This is |
| 1841 | a SHA384 digest signed by an ECDSA key. |
| 1842 | |
| 1843 | .. attribute:: ECDSA_WITH_SHA512 |
| 1844 | |
| 1845 | Corresponds to the dotted string ``"1.2.840.10045.4.3.4"``. This is |
| 1846 | a SHA512 digest signed by an ECDSA key. |
| 1847 | |
| 1848 | .. attribute:: DSA_WITH_SHA1 |
| 1849 | |
| 1850 | Corresponds to the dotted string ``"1.2.840.10040.4.3"``. This is |
| 1851 | a SHA1 digest signed by a DSA key. |
| 1852 | |
| 1853 | .. attribute:: DSA_WITH_SHA224 |
| 1854 | |
| 1855 | Corresponds to the dotted string ``"2.16.840.1.101.3.4.3.1"``. This is |
| 1856 | a SHA224 digest signed by a DSA key. |
| 1857 | |
| 1858 | .. attribute:: DSA_WITH_SHA256 |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1859 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1860 | Corresponds to the dotted string ``"2.16.840.1.101.3.4.3.2"``. This is |
| 1861 | a SHA256 digest signed by a DSA key. |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1862 | |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1863 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1864 | .. class:: ExtendedKeyUsageOID |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1865 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1866 | .. versionadded:: 1.0 |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1867 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1868 | .. attribute:: SERVER_AUTH |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1869 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1870 | Corresponds to the dotted string ``"1.3.6.1.5.5.7.3.1"``. This is used |
| 1871 | to denote that a certificate may be used for TLS web server |
| 1872 | authentication. |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1873 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1874 | .. attribute:: CLIENT_AUTH |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1875 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1876 | Corresponds to the dotted string ``"1.3.6.1.5.5.7.3.2"``. This is used |
| 1877 | to denote that a certificate may be used for TLS web client |
| 1878 | authentication. |
Paul Kehrer | ffa2a15 | 2015-03-31 08:18:25 -0500 | [diff] [blame] | 1879 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1880 | .. attribute:: CODE_SIGNING |
Paul Kehrer | e1513fa | 2015-03-30 23:08:17 -0500 | [diff] [blame] | 1881 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1882 | Corresponds to the dotted string ``"1.3.6.1.5.5.7.3.3"``. This is used |
| 1883 | to denote that a certificate may be used for code signing. |
Paul Kehrer | e1513fa | 2015-03-30 23:08:17 -0500 | [diff] [blame] | 1884 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1885 | .. attribute:: EMAIL_PROTECTION |
Paul Kehrer | e1513fa | 2015-03-30 23:08:17 -0500 | [diff] [blame] | 1886 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1887 | Corresponds to the dotted string ``"1.3.6.1.5.5.7.3.4"``. This is used |
| 1888 | to denote that a certificate may be used for email protection. |
Paul Kehrer | e1513fa | 2015-03-30 23:08:17 -0500 | [diff] [blame] | 1889 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1890 | .. attribute:: TIME_STAMPING |
Paul Kehrer | e1513fa | 2015-03-30 23:08:17 -0500 | [diff] [blame] | 1891 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1892 | Corresponds to the dotted string ``"1.3.6.1.5.5.7.3.8"``. This is used |
| 1893 | to denote that a certificate may be used for time stamping. |
Paul Kehrer | e1513fa | 2015-03-30 23:08:17 -0500 | [diff] [blame] | 1894 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1895 | .. attribute:: OCSP_SIGNING |
Paul Kehrer | e1513fa | 2015-03-30 23:08:17 -0500 | [diff] [blame] | 1896 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1897 | Corresponds to the dotted string ``"1.3.6.1.5.5.7.3.9"``. This is used |
| 1898 | to denote that a certificate may be used for signing OCSP responses. |
Paul Kehrer | e1513fa | 2015-03-30 23:08:17 -0500 | [diff] [blame] | 1899 | |
Paul Kehrer | e1513fa | 2015-03-30 23:08:17 -0500 | [diff] [blame] | 1900 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1901 | .. class:: AuthorityInformationAccessOID |
Paul Kehrer | e1513fa | 2015-03-30 23:08:17 -0500 | [diff] [blame] | 1902 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1903 | .. versionadded:: 1.0 |
Paul Kehrer | e1513fa | 2015-03-30 23:08:17 -0500 | [diff] [blame] | 1904 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1905 | .. attribute:: OCSP |
Paul Kehrer | e1513fa | 2015-03-30 23:08:17 -0500 | [diff] [blame] | 1906 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1907 | Corresponds to the dotted string ``"1.3.6.1.5.5.7.48.1"``. Used as the |
| 1908 | identifier for OCSP data in |
| 1909 | :class:`~cryptography.x509.AccessDescription` objects. |
Paul Kehrer | e1513fa | 2015-03-30 23:08:17 -0500 | [diff] [blame] | 1910 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1911 | .. attribute:: CA_ISSUERS |
Paul Kehrer | 3e6d558 | 2015-05-02 21:57:56 -0500 | [diff] [blame] | 1912 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1913 | Corresponds to the dotted string ``"1.3.6.1.5.5.7.48.2"``. Used as the |
| 1914 | identifier for CA issuer data in |
| 1915 | :class:`~cryptography.x509.AccessDescription` objects. |
Paul Kehrer | 3e6d558 | 2015-05-02 21:57:56 -0500 | [diff] [blame] | 1916 | |
Paul Kehrer | 3e6d558 | 2015-05-02 21:57:56 -0500 | [diff] [blame] | 1917 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1918 | .. class:: CertificatePoliciesOID |
Paul Kehrer | 3e6d558 | 2015-05-02 21:57:56 -0500 | [diff] [blame] | 1919 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1920 | .. versionadded:: 1.0 |
Paul Kehrer | 3e6d558 | 2015-05-02 21:57:56 -0500 | [diff] [blame] | 1921 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1922 | .. attribute:: CPS_QUALIFIER |
Paul Kehrer | 2e87974 | 2015-05-02 23:09:56 -0500 | [diff] [blame] | 1923 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1924 | Corresponds to the dotted string ``"1.3.6.1.5.5.7.2.1"``. |
Paul Kehrer | 2e87974 | 2015-05-02 23:09:56 -0500 | [diff] [blame] | 1925 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1926 | .. attribute:: CPS_USER_NOTICE |
Paul Kehrer | 2e87974 | 2015-05-02 23:09:56 -0500 | [diff] [blame] | 1927 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1928 | Corresponds to the dotted string ``"1.3.6.1.5.5.7.2.2"``. |
Paul Kehrer | 2e87974 | 2015-05-02 23:09:56 -0500 | [diff] [blame] | 1929 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1930 | .. attribute:: ANY_POLICY |
Paul Kehrer | 2e87974 | 2015-05-02 23:09:56 -0500 | [diff] [blame] | 1931 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1932 | Corresponds to the dotted string ``"2.5.29.32.0"``. |
Paul Kehrer | 16fae76 | 2015-05-01 23:14:20 -0500 | [diff] [blame] | 1933 | |
Paul Kehrer | 16fae76 | 2015-05-01 23:14:20 -0500 | [diff] [blame] | 1934 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1935 | .. class:: ExtensionOID |
Paul Kehrer | 5553d57 | 2015-03-23 21:08:01 -0500 | [diff] [blame] | 1936 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1937 | .. versionadded:: 1.0 |
Paul Kehrer | 2bb9464 | 2015-03-21 09:54:17 -0500 | [diff] [blame] | 1938 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1939 | .. attribute:: BASIC_CONSTRAINTS |
Paul Kehrer | 2bb9464 | 2015-03-21 09:54:17 -0500 | [diff] [blame] | 1940 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1941 | Corresponds to the dotted string ``"2.5.29.19"``. The identifier for the |
| 1942 | :class:`~cryptography.x509.BasicConstraints` extension type. |
Paul Kehrer | 2bb9464 | 2015-03-21 09:54:17 -0500 | [diff] [blame] | 1943 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1944 | .. attribute:: KEY_USAGE |
Paul Kehrer | cecbbba | 2015-03-30 14:58:38 -0500 | [diff] [blame] | 1945 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1946 | Corresponds to the dotted string ``"2.5.29.15"``. The identifier for the |
| 1947 | :class:`~cryptography.x509.KeyUsage` extension type. |
Paul Kehrer | cecbbba | 2015-03-30 14:58:38 -0500 | [diff] [blame] | 1948 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1949 | .. attribute:: SUBJECT_ALTERNATIVE_NAME |
Paul Kehrer | d4f632e | 2015-05-12 08:25:42 -0500 | [diff] [blame] | 1950 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1951 | Corresponds to the dotted string ``"2.5.29.17"``. The identifier for the |
| 1952 | :class:`~cryptography.x509.SubjectAlternativeName` extension type. |
Paul Kehrer | d4f632e | 2015-05-12 08:25:42 -0500 | [diff] [blame] | 1953 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1954 | .. attribute:: ISSUER_ALTERNATIVE_NAME |
Paul Kehrer | 99125c9 | 2015-06-07 18:37:10 -0500 | [diff] [blame] | 1955 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1956 | Corresponds to the dotted string ``"2.5.29.18"``. The identifier for the |
| 1957 | :class:`~cryptography.x509.IssuerAlternativeName` extension type. |
Paul Kehrer | 99125c9 | 2015-06-07 18:37:10 -0500 | [diff] [blame] | 1958 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1959 | .. attribute:: SUBJECT_KEY_IDENTIFIER |
Paul Kehrer | d4f632e | 2015-05-12 08:25:42 -0500 | [diff] [blame] | 1960 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1961 | Corresponds to the dotted string ``"2.5.29.14"``. The identifier for the |
| 1962 | :class:`~cryptography.x509.SubjectKeyIdentifier` extension type. |
Paul Kehrer | d4f632e | 2015-05-12 08:25:42 -0500 | [diff] [blame] | 1963 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1964 | .. attribute:: NAME_CONSTRAINTS |
Paul Kehrer | e0017be | 2015-05-17 20:39:40 -0600 | [diff] [blame] | 1965 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1966 | Corresponds to the dotted string ``"2.5.29.30"``. The identifier for the |
| 1967 | :class:`~cryptography.x509.NameConstraints` extension type. |
Paul Kehrer | e0017be | 2015-05-17 20:39:40 -0600 | [diff] [blame] | 1968 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1969 | .. attribute:: CRL_DISTRIBUTION_POINTS |
Paul Kehrer | d4f632e | 2015-05-12 08:25:42 -0500 | [diff] [blame] | 1970 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1971 | Corresponds to the dotted string ``"2.5.29.31"``. The identifier for the |
| 1972 | :class:`~cryptography.x509.CRLDistributionPoints` extension type. |
Paul Kehrer | d4f632e | 2015-05-12 08:25:42 -0500 | [diff] [blame] | 1973 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1974 | .. attribute:: CERTIFICATE_POLICIES |
Paul Kehrer | d4f632e | 2015-05-12 08:25:42 -0500 | [diff] [blame] | 1975 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1976 | Corresponds to the dotted string ``"2.5.29.32"``. The identifier for the |
| 1977 | :class:`~cryptography.x509.CertificatePolicies` extension type. |
Paul Kehrer | d4f632e | 2015-05-12 08:25:42 -0500 | [diff] [blame] | 1978 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1979 | .. attribute:: AUTHORITY_KEY_IDENTIFIER |
Paul Kehrer | d4f632e | 2015-05-12 08:25:42 -0500 | [diff] [blame] | 1980 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1981 | Corresponds to the dotted string ``"2.5.29.35"``. The identifier for the |
| 1982 | :class:`~cryptography.x509.AuthorityKeyIdentifier` extension type. |
Paul Kehrer | d4f632e | 2015-05-12 08:25:42 -0500 | [diff] [blame] | 1983 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1984 | .. attribute:: EXTENDED_KEY_USAGE |
Paul Kehrer | d4f632e | 2015-05-12 08:25:42 -0500 | [diff] [blame] | 1985 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1986 | Corresponds to the dotted string ``"2.5.29.37"``. The identifier for the |
| 1987 | :class:`~cryptography.x509.ExtendedKeyUsage` extension type. |
Paul Kehrer | d4f632e | 2015-05-12 08:25:42 -0500 | [diff] [blame] | 1988 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1989 | .. attribute:: AUTHORITY_INFORMATION_ACCESS |
Paul Kehrer | d4f632e | 2015-05-12 08:25:42 -0500 | [diff] [blame] | 1990 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1991 | Corresponds to the dotted string ``"1.3.6.1.5.5.7.1.1"``. The identifier |
| 1992 | for the :class:`~cryptography.x509.AuthorityInformationAccess` extension |
| 1993 | type. |
Paul Kehrer | 56da2a5 | 2015-02-11 23:35:07 -0600 | [diff] [blame] | 1994 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1995 | .. attribute:: INHIBIT_ANY_POLICY |
Paul Kehrer | b33de93 | 2015-08-06 23:41:05 +0100 | [diff] [blame] | 1996 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 1997 | Corresponds to the dotted string ``"2.5.29.54"``. The identifier |
| 1998 | for the :class:`~cryptography.x509.InhibitAnyPolicy` extension type. |
Paul Kehrer | b33de93 | 2015-08-06 23:41:05 +0100 | [diff] [blame] | 1999 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 2000 | .. attribute:: OCSP_NO_CHECK |
Paul Kehrer | 4a1038e | 2015-05-18 10:28:31 -0700 | [diff] [blame] | 2001 | |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 2002 | Corresponds to the dotted string ``"1.3.6.1.5.5.7.48.1.5"``. The |
| 2003 | identifier for the :class:`~cryptography.x509.OCSPNoCheck` extension |
| 2004 | type. |
Paul Kehrer | 4a1038e | 2015-05-18 10:28:31 -0700 | [diff] [blame] | 2005 | |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 2006 | Exceptions |
| 2007 | ~~~~~~~~~~ |
Paul Kehrer | e27f658 | 2015-08-10 18:33:38 -0500 | [diff] [blame] | 2008 | .. currentmodule:: cryptography.x509 |
Paul Kehrer | 912d3fb | 2015-01-29 11:19:22 -0600 | [diff] [blame] | 2009 | |
Paul Kehrer | e76cd27 | 2014-12-14 19:00:51 -0600 | [diff] [blame] | 2010 | .. class:: InvalidVersion |
Paul Kehrer | a68fd33 | 2014-11-27 07:08:40 -1000 | [diff] [blame] | 2011 | |
| 2012 | This is raised when an X.509 certificate has an invalid version number. |
Paul Kehrer | 016e08a | 2014-11-26 09:41:18 -1000 | [diff] [blame] | 2013 | |
Paul Kehrer | d5cccf7 | 2014-12-15 17:20:33 -0600 | [diff] [blame] | 2014 | .. attribute:: parsed_version |
| 2015 | |
Paul Kehrer | bbffc40 | 2014-12-17 13:33:55 -0600 | [diff] [blame] | 2016 | :type: int |
| 2017 | |
| 2018 | Returns the raw version that was parsed from the certificate. |
Paul Kehrer | d5cccf7 | 2014-12-15 17:20:33 -0600 | [diff] [blame] | 2019 | |
Paul Kehrer | fbb7ac8 | 2015-03-16 19:26:29 -0500 | [diff] [blame] | 2020 | .. class:: DuplicateExtension |
| 2021 | |
| 2022 | This is raised when more than one X.509 extension of the same type is |
| 2023 | found within a certificate. |
| 2024 | |
| 2025 | .. attribute:: oid |
| 2026 | |
| 2027 | :type: :class:`ObjectIdentifier` |
| 2028 | |
| 2029 | Returns the OID. |
| 2030 | |
| 2031 | .. class:: UnsupportedExtension |
| 2032 | |
| 2033 | This is raised when a certificate contains an unsupported extension type. |
| 2034 | |
| 2035 | .. attribute:: oid |
| 2036 | |
| 2037 | :type: :class:`ObjectIdentifier` |
| 2038 | |
| 2039 | Returns the OID. |
| 2040 | |
Paul Kehrer | fa56a23 | 2015-03-17 13:14:03 -0500 | [diff] [blame] | 2041 | .. class:: ExtensionNotFound |
| 2042 | |
| 2043 | This is raised when calling :meth:`Extensions.get_extension_for_oid` with |
| 2044 | an extension OID that is not present in the certificate. |
| 2045 | |
| 2046 | .. attribute:: oid |
| 2047 | |
| 2048 | :type: :class:`ObjectIdentifier` |
| 2049 | |
| 2050 | Returns the OID. |
| 2051 | |
Paul Kehrer | 9089c91 | 2015-04-20 22:15:20 -0500 | [diff] [blame] | 2052 | .. class:: UnsupportedGeneralNameType |
| 2053 | |
| 2054 | This is raised when a certificate contains an unsupported general name |
| 2055 | type in an extension. |
| 2056 | |
Paul Kehrer | bed0735 | 2015-04-21 08:31:10 -0500 | [diff] [blame] | 2057 | .. attribute:: type |
| 2058 | |
Paul Kehrer | 0a621bf | 2015-04-22 09:22:56 -0500 | [diff] [blame] | 2059 | :type: int |
| 2060 | |
| 2061 | The integer value of the unsupported type. The complete list of |
| 2062 | types can be found in `RFC 5280 section 4.2.1.6`_. |
Paul Kehrer | bed0735 | 2015-04-21 08:31:10 -0500 | [diff] [blame] | 2063 | |
Paul Kehrer | 016e08a | 2014-11-26 09:41:18 -1000 | [diff] [blame] | 2064 | |
Paul Kehrer | c7c9a43 | 2015-04-19 09:20:13 -0500 | [diff] [blame] | 2065 | .. _`RFC 5280 section 4.2.1.1`: https://tools.ietf.org/html/rfc5280#section-4.2.1.1 |
Paul Kehrer | 0a621bf | 2015-04-22 09:22:56 -0500 | [diff] [blame] | 2066 | .. _`RFC 5280 section 4.2.1.6`: https://tools.ietf.org/html/rfc5280#section-4.2.1.6 |