aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* line length and grammarAlex Gaynor2015-07-131-5/+7
|
* spellingAlex Gaynor2015-07-131-2/+2
|
* Fixed #2091 -- describe how to generate a CSR.Alex Gaynor2015-07-132-0/+78
|
* Merge pull request #2137 from reaperhulk/encode-rfc822nameAlex Gaynor2015-07-122-1/+15
|\ | | | | Encode rfc822name
| * support rfc822Name general name encodingPaul Kehrer2015-07-122-1/+15
| |
* | Merge pull request #2148 from reaperhulk/fix-random-orderAlex Gaynor2015-07-121-0/+1
|\ \ | | | | | | clear the error stack if d2i_ASN1_TYPE fails
| * | clear the error stack if d2i_ASN1_TYPE failsPaul Kehrer2015-07-121-0/+1
| |/ | | | | | | The random order jenkins job found a bug!
* | Merge pull request #2147 from reaperhulk/there-are-two-partsAlex Gaynor2015-07-121-4/+3
|\ \ | | | | | | parts can't be > 2, so let's not pretend it could be
| * | parts can't be > 2, so let's not pretend it could bePaul Kehrer2015-07-121-4/+3
| | | | | | | | | | | | (famous last words)
* | | Merge pull request #2139 from alex/remove-fast-pathPaul Kehrer2015-07-121-3/+0
|\ \ \ | | | | | | | | Removed the fastpath from binding initialization. These aren't instantiated frequently enough for this to be worth it, and it improves our coverage.
| * | | Removed the fastpath from binding initialization. These aren't instantiated ↵Alex Gaynor2015-07-121-3/+0
| | | | | | | | | | | | | | | | frequently enough for this to be worth it, and it improves our coverage.
* | | | Merge pull request #2146 from alex/coveragePaul Kehrer2015-07-122-1/+11
|\ \ \ \ | |_|_|/ |/| | | Don't try to upload coverage on builds which don't produce coverage
| * | | Don't try to upload coverage on builds which don't produce coverageAlex Gaynor2015-07-122-1/+11
| | | |
* | | | Merge pull request #2141 from reaperhulk/better-rfc822nameAlex Gaynor2015-07-122-0/+37
|\ \ \ \ | | | | | | | | | | expand RFC822Name to validate and (internally) IDNA encode
| * | | | simplify logic, it doesn't appear parts > 2 is possiblePaul Kehrer2015-07-121-4/+3
| | | | |
| * | | | expand RFC822Name to validate and (internally) IDNA encodePaul Kehrer2015-07-122-0/+38
| | | | | | | | | | | | | | | | | | | | This will be used in the CSR builder
* | | | | Merge pull request #2145 from alex/numbers-hashPaul Kehrer2015-07-122-0/+30
|\ \ \ \ \ | | | | | | | | | | | | Fixed #2143 -- added __hash__ to RSA{Public,Private}Numbers
| * | | | | Fixed #2143 -- added __hash__ to RSA{Public,Private}NumbersAlex Gaynor2015-07-122-0/+30
| | |_|_|/ | |/| | |
* | | | | Merge pull request #2144 from pyca/alex-patch-1Paul Kehrer2015-07-121-3/+3
|\ \ \ \ \ | |_|_|/ / |/| | | | Don't try to load backends if the test doesn't need it
| * | | | Don't try to load backends if the test doesn't need itAlex Gaynor2015-07-121-3/+3
| |/ / /
* | | | Merge pull request #2142 from alex/x509-tutorialPaul Kehrer2015-07-125-14/+22
|\ \ \ \ | |/ / / |/| | | Reorganize the x509 docs in prep for a tutorial
| * | | fixed this doc tooAlex Gaynor2015-07-121-2/+2
| | | |
| * | | updated links in the changelogAlex Gaynor2015-07-121-3/+3
| | | |
| * | | these were movedAlex Gaynor2015-07-121-2/+0
| | | |
| * | | Reorganize the x509 docs in prep for a tutorialAlex Gaynor2015-07-123-7/+17
|/ / /
* | | Merge pull request #2095 from reaperhulk/nc-the-hard-part-reduxAlex Gaynor2015-07-122-5/+80
|\ \ \ | |/ / |/| | name constraints - support IP addresses with netmask
| * | use helper method _asn1_string_to_bytesPaul Kehrer2015-07-121-3/+1
| | |
| * | not bytesPaul Kehrer2015-07-101-1/+1
| | |
| * | simplify and handle /32 and /128Paul Kehrer2015-07-102-3/+26
| | |
| * | name constraints - support IP addresses with netmaskPaul Kehrer2015-07-102-5/+59
| | |
* | | Merge pull request #2136 from reaperhulk/encode-othernameAlex Gaynor2015-07-124-0/+53
|\ \ \ | |_|/ |/| | Encode othername
| * | this is constPaul Kehrer2015-07-111-1/+1
| | |
| * | raise a nice error if bad ASN.1 is providedPaul Kehrer2015-07-112-1/+21
| | |
| * | support for OtherName encoding for general namesPaul Kehrer2015-07-114-0/+33
|/ /
* | Merge pull request #2135 from reaperhulk/encode-ipaddressAlex Gaynor2015-07-112-2/+21
|\ \ | | | | | | Encode ipaddress
| * | support IPAddress encoding for general namesPaul Kehrer2015-07-112-2/+21
|/ /
* | Merge pull request #2134 from reaperhulk/encode-dirnameAlex Gaynor2015-07-112-2/+28
|\ \ | |/ |/| support DirectoryName encoding for general names
| * modify _encode_name, add _encode_name_gcPaul Kehrer2015-07-111-5/+10
| |
| * support DirectoryName encoding for general namesPaul Kehrer2015-07-102-0/+21
| |
* | Merge pull request #2129 from alex/hash-csrPaul Kehrer2015-07-093-0/+29
|\ \ | | | | | | Fixed #2127 -- added __hash__ to CSR
| * | Fixed #2127 -- added __hash__ to CSRAlex Gaynor2015-07-083-0/+29
| | |
* | | Merge pull request #2132 from reaperhulk/port-0.9.3-changelogAlex Gaynor2015-07-091-0/+5
|\ \ \ | |_|/ |/| | port 0.9.3 changelog to master
| * | port 0.9.3 changelog to masterPaul Kehrer2015-07-091-0/+5
|/ /
* | Merge pull request #2108 from mail-in-a-box/masterPaul Kehrer2015-07-085-2/+140
|\ \ | |/ |/| support othername in general names
| * special-case GeneralNames.get_values_for_type to return OtherName instances ↵Joshua Tauberer2015-07-063-6/+12
| | | | | | | | directly rather than their value properties; tests updated
| * additional tests and doc spelling error fix for OtherNameJoshua Tauberer2015-07-062-1/+50
| |
| * parse SAN otherNames into OtherName instances rather than raising an exceptionJoshua Tauberer2015-07-065-1/+84
| | | | | | | | Test added.
* | Merge pull request #2124 from alex/hash-certPaul Kehrer2015-07-083-7/+33
|\ \ | | | | | | Fixed #2120 -- added __hash__ to x509.Cert
| * | no need to hash it twice, also simplify fingerprint methodAlex Gaynor2015-07-071-9/+2
| | |
| * | Fixed #2120 -- added __hash__ to x509.CertAlex Gaynor2015-07-063-0/+33
| | |