aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1859 from reaperhulk/san-unsupportedAlex Gaynor2015-04-224-0/+56
|\ | | | | SAN unsupported type
| * return only an int for unsupported general name type, update docsPaul Kehrer2015-04-223-3/+7
| |
| * update exception to contain detailPaul Kehrer2015-04-214-3/+15
| |
| * handle otherName, x400Address, and ediPartyName in OpenSSL backendPaul Kehrer2015-04-214-0/+40
|/
* Merge pull request #1857 from reaperhulk/san-check-list-elementsAlex Gaynor2015-04-212-0/+12
|\ | | | | add a check to require that the list passed to SAN is all general names
| * add a check to require that the list passed to SAN is all general namesPaul Kehrer2015-04-212-0/+12
| |
* | Merge pull request #1855 from reaperhulk/subject-alt-nameAlex Gaynor2015-04-213-0/+50
|\ \ | | | | | | Support Subject Alternative Name in the OpenSSL backend
| * | review fixesPaul Kehrer2015-04-212-21/+2
| | |
| * | Support Subject Alternative Name in the OpenSSL backendPaul Kehrer2015-04-204-0/+69
| |/ | | | | | | Adds only DNS support first
* | Merge pull request #1856 from reaperhulk/x509-move-exception-docAlex Gaynor2015-04-211-3/+3
|\ \ | |/ |/| UnsupportedExtension raises when accessing cert.extensions
| * UnsupportedExtension raises when accessing cert.extensionsPaul Kehrer2015-04-211-3/+3
|/
* Merge pull request #1854 from reaperhulk/add-san-test-casesAlex Gaynor2015-04-204-0/+65
|\ | | | | IDNA and edge case SAN test vectors
| * IDNA and edge case SAN test vectorsPaul Kehrer2015-04-204-0/+65
|/
* Merge pull request #1835 from reaperhulk/x509-akiAlex Gaynor2015-04-193-0/+118
|\ | | | | AuthorityKeyIdentifier support
| * httpsPaul Kehrer2015-04-191-1/+1
| |
| * update doc language to point more strongly at rfc 5280Paul Kehrer2015-04-191-2/+5
| |
| * add more wordsPaul Kehrer2015-04-181-1/+2
| |
| * add more prose for AKIPaul Kehrer2015-04-181-0/+7
| |
| * AuthorityKeyIdentifier supportPaul Kehrer2015-04-183-0/+107
| |
* | Merge pull request #1846 from reaperhulk/drop-python-32Alex Gaynor2015-04-188-26/+5
|\ \ | |/ |/| Drop support for Python 3.2
| * remove python 3.2 from every other place I could findPaul Kehrer2015-04-185-9/+3
| |
| * remove python 3.2 from the classifiersPaul Kehrer2015-04-181-1/+0
| |
| * Drop support for Python 3.2Paul Kehrer2015-04-182-16/+2
|/
* Merge pull request #1783 from reaperhulk/san-classAlex Gaynor2015-04-184-0/+419
|\ | | | | Add GeneralName and SubjectAlternativeName classes
| * Add GeneralName and SubjectAlternativeName classesPaul Kehrer2015-04-144-0/+419
| |
* | Merge pull request #1852 from reaperhulk/update-a-linkAlex Gaynor2015-04-171-1/+1
|\ \ | | | | | | update a link that has been permanently redirected
| * | update a link that has been permanently redirectedPaul Kehrer2015-04-171-1/+1
|/ /
* | Merge pull request #1849 from Sp1l/masterPaul Kehrer2015-04-171-1/+1
|\ \ | | | | | | LibreSSL added ALPN support in 2.1.3
| * | LibreSSL added ALPN support in 2.1.3Bernard Spil2015-04-151-1/+1
| | | | | | | | | This fixes build issues on FreeBSD
* | | Merge pull request #1851 from sbuss/sbuss-authorsPaul Kehrer2015-04-161-0/+1
|\ \ \ | | | | | | | | Add @sbuss to AUTHORS
| * | | Add @sbuss to AUTHORSSteven Buss2015-04-151-0/+1
|/ / /
* | | Merge pull request #1850 from reaperhulk/update-x509-reprAlex Gaynor2015-04-153-5/+5
|\ \ \ | |/ / |/| | improve KeyUsage repr
| * | update the docs tooPaul Kehrer2015-04-151-1/+1
| | |
| * | improve KeyUsage reprPaul Kehrer2015-04-152-4/+4
|/ / | | | | | | fixes #1834
* | Merge pull request #1848 from reaperhulk/invalid-tokenAlex Gaynor2015-04-1410-16/+38
|\ \ | | | | | | Twofactor invalid token
| * | add changelog entry, set proper deprecation warningPaul Kehrer2015-04-142-1/+5
| | |
| * | InvalidToken is deprecated in 09, not 08Steven Buss2015-04-131-1/+1
| | |
| * | Add DeprecatedIn09Steven Buss2015-04-131-0/+1
| | |
| * | Update docsSteven Buss2015-04-132-10/+9
| | |
| * | Move cryptography.exceptions.InvalidToken to ↵Steven Buss2015-04-136-6/+24
| | | | | | | | | | | | cryptography.hazmat.primitives.twofactor
* | | Merge pull request #1845 from geofft/pyasn1-eocAlex Gaynor2015-04-141-1/+1
|\ \ \ | | | | | | | | Fix comparison between pyasn1 objects introduced in #1843
| * | | Fix comparison between pyasn1 objects introduced in #1843Geoffrey Thomas2015-04-141-1/+1
|/ / / | | | | | | | | | | | | | | | | | | __eq__ compares values, so e.g. univ.Integer(0) == eoo.endOfOctets. I believe this isn't a logic error for what we're doing now, but keep the code right in case it gets reused. This is the pattern used by pyasn1 internally.
* | | Merge pull request #1843 from geofft/pyasn1-eocAlex Gaynor2015-04-132-0/+12
|\ \ \ | |/ / |/| | Work around pyasn1's willingness to return endOfOctets in DER parsing
| * | Work around pyasn1's willingness to return endOfOctets in DER parsingGeoffrey Thomas2015-04-132-0/+12
| |/ | | | | | | See #1838 for discussion.
* | Merge pull request #1839 from alex/decode-rfc-docsPaul Kehrer2015-04-131-0/+2
|\ \ | | | | | | Document that decode_rfc6979_signature raises ValueError
| * | Simpler languageAlex Gaynor2015-04-131-1/+1
| | |
| * | Removed a confusing sentenceAlex Gaynor2015-04-131-2/+1
| | |
| * | Document that decode_rfc6979_signature raises ValueErrorAlex Gaynor2015-04-131-0/+3
| |/
* | Merge pull request #1840 from alex/simplify-setupPaul Kehrer2015-04-131-6/+3
|\ \ | | | | | | Simplify setup.py slightly
| * | Simplify setup.py slightlyAlex Gaynor2015-04-131-6/+3
| |/