Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Fixes docstring typo. | Andre Caron | 2015-06-24 | 1 | -1/+1 | |
| | | ||||||
| * | Adds updates docs for method chaining in CSR builder. | Andre Caron | 2015-06-24 | 1 | -1/+4 | |
| | | ||||||
| * | Adds method chaining to CSR builder. | Andre Caron | 2015-06-24 | 2 | -35/+42 | |
| | | ||||||
| * | Removes OID to txt to OID conversion. | Andre Caron | 2015-06-24 | 1 | -10/+3 | |
| | | ||||||
| * | Cleans up some GC semantics. | Andre Caron | 2015-06-24 | 1 | -3/+16 | |
| | | ||||||
| * | Renames sign_509_request to create_x509_csr. | Andre Caron | 2015-06-24 | 5 | -2/+23 | |
| | | ||||||
| * | Fixes memory allocation. | Andre Caron | 2015-06-24 | 1 | -12/+4 | |
| | | ||||||
| * | Adds CSR builder. | Andre Caron | 2015-06-24 | 5 | -1/+377 | |
|/ | ||||||
* | Merge pull request #2062 from alex/x509-ecdsa-sha1 | Paul Kehrer | 2015-06-23 | 2 | -0/+8 | |
|\ | | | | | Added teh OID for ECDSA with SHA1. | |||||
| * | Added teh OID for ECDSA with SHA1. | Alex Gaynor | 2015-06-23 | 2 | -0/+8 | |
|/ | | | | In practice this is rare because the BR requires ECDSA signatures to use SHA256+ (or maybe the requirements for SHA256 just came at the same time as ECDSA, idk) | |||||
* | Merge pull request #2059 from reaperhulk/add-wildcard-san | Alex Gaynor | 2015-06-23 | 3 | -0/+39 | |
|\ | | | | | add wildcard SAN x509 test vector | |||||
| * | add wildcard SAN x509 test vector | Paul Kehrer | 2015-06-23 | 3 | -0/+39 | |
| | | ||||||
* | | Merge pull request #2058 from reaperhulk/fix-nc-vectors | Alex Gaynor | 2015-06-23 | 3 | -36/+35 | |
|\ \ | |/ |/| | name constraints should not contain a wildcard character | |||||
| * | name constraints should not contain a wildcard character | Paul Kehrer | 2015-06-23 | 3 | -36/+35 | |
|/ | | | | | According to RFC 5280 you should just start with a . (e.g. .domain.com instead of *.domain.com) | |||||
* | Merge pull request #2057 from reaperhulk/i-are-dumb | Alex Gaynor | 2015-06-23 | 2 | -0/+19 | |
|\ | | | | | fix ec_cdata_to_evp_pkey bug | |||||
| * | fix ec_cdata_to_evp_pkey bug | Paul Kehrer | 2015-06-22 | 2 | -0/+19 | |
|/ | | | | | | We weren't actually returning the object and the tests weren't catching it because we didn't try to use the evp_pkey property in the tests. The added test confirms it actually works. | |||||
* | Merge pull request #2056 from alex/remove-workarounds | Paul Kehrer | 2015-06-22 | 3 | -10/+4 | |
|\ | | | | | Remove our workarounds for pyasn.1 bugs, a new pyasn.1 is out! | |||||
| * | remove unused import | Alex Gaynor | 2015-06-22 | 1 | -1/+0 | |
| | | ||||||
| * | Remove our workarounds for pyasn.1 bugs, a new pyasn.1 is out! | Alex Gaynor | 2015-06-22 | 3 | -9/+4 | |
|/ | ||||||
* | Merge pull request #2055 from reaperhulk/name-constraints-bindings | Alex Gaynor | 2015-06-22 | 1 | -0/+25 | |
|\ | | | | | add name constraints and general subtree struct and macro stack defs | |||||
| * | add name constraints and general subtree struct and macro stack defs | Paul Kehrer | 2015-06-21 | 1 | -0/+25 | |
|/ | ||||||
* | Merge pull request #2053 from reaperhulk/name-constraints-eq | Alex Gaynor | 2015-06-21 | 2 | -0/+41 | |
|\ | | | | | add eq/ne support to NameConstraints | |||||
| * | add eq/ne support to NameConstraints | Paul Kehrer | 2015-06-21 | 2 | -0/+41 | |
|/ | ||||||
* | Merge pull request #1974 from reaperhulk/name-constraints | Alex Gaynor | 2015-06-21 | 3 | -0/+151 | |
|\ | | | | | add nameconstraints classes | |||||
| * | add nameconstraints classes | Paul Kehrer | 2015-06-21 | 3 | -0/+151 | |
|/ | ||||||
* | Merge pull request #2036 from major/master | Alex Gaynor | 2015-06-21 | 3 | -0/+37 | |
|\ | | | | | Added a repr() method to x509._Certificate | |||||
| * | Added a repr() method to x509._Certificate | Major Hayden | 2015-06-21 | 3 | -0/+37 | |
| | | ||||||
* | | Merge pull request #2051 from alex/flake8-speedup | Paul Kehrer | 2015-06-21 | 1 | -1/+1 | |
|\ \ | | | | | | | Speed up flake8 by skipping two irrelevant directories | |||||
| * | | Speed up flake8 by skipping two irrelevant directories | Alex Gaynor | 2015-06-21 | 1 | -1/+1 | |
|/ / | ||||||
* | | Merge pull request #2050 from alex/doc-fix | Paul Kehrer | 2015-06-20 | 1 | -1/+1 | |
|\ \ | | | | | | | Fixed the anchor of a URL that changed on wikipedia | |||||
| * | | Fixed the anchor of a URL that changed on wikipedia | Alex Gaynor | 2015-06-20 | 1 | -1/+1 | |
|/ / | ||||||
* | | Merge pull request #2034 from reaperhulk/windows-flags | Alex Gaynor | 2015-06-20 | 4 | -8/+20 | |
|\ \ | | | | | | | enable ASLR and NX on windows builds (affects 2.x only) | |||||
| * | | enable ASLR and NX on windows builds (affects 2.x only) | Paul Kehrer | 2015-06-20 | 4 | -8/+20 | |
| | | | ||||||
* | | | Merge pull request #2049 from sholsapp/new-crl-bindings | Alex Gaynor | 2015-06-20 | 1 | -7/+9 | |
|\ \ \ | | | | | | | | | Add additional CRL bindings | |||||
| * | | | Add additional CRL bindings | Stephen Holsapple | 2015-06-20 | 1 | -7/+9 | |
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | I sorted the X50_CRL bindings and added two additional bindings: 1. X509_CRL_set_version 2. X509_CRL_sort These two functions are required to make CRL useful in pyOpenSSL re: https://github.com/pyca/pyopenssl/issues/256 | |||||
* | | | Merge pull request #2048 from alex/ian | Paul Kehrer | 2015-06-20 | 2 | -2/+32 | |
|\ \ \ | | | | | | | | | Refs #1947 -- add support for IAN to the OpenSSL backend | |||||
| * | | | Refs #1947 -- add support for IAN to the OpenSSL backend | Alex Gaynor | 2015-06-20 | 2 | -2/+32 | |
|/ / / | ||||||
* | | | Merge pull request #2047 from reaperhulk/evp-pkey | Alex Gaynor | 2015-06-20 | 4 | -76/+75 | |
|\ \ \ | |/ / |/| | | create evp_pkey in constructor for DSA/EC | |||||
| * | | evp_pkey in openssl asymmetric key constructors | Paul Kehrer | 2015-06-20 | 4 | -76/+75 | |
|/ / | ||||||
* | | Merge pull request #2046 from Ayrx/style-nits | Alex Gaynor | 2015-06-19 | 3 | -12/+12 | |
|\ \ | | | | | | | Change ' to ". | |||||
| * | | Change ' to ". | Terry Chia | 2015-06-19 | 3 | -12/+12 | |
| | | | ||||||
* | | | Merge pull request #2040 from reaperhulk/policy-constraints-vectors | Alex Gaynor | 2015-06-18 | 4 | -0/+61 | |
|\ \ \ | | | | | | | | | add x509 policy constraints test vectors | |||||
| * | | | add x509 policy constraints test vectors | Paul Kehrer | 2015-06-17 | 4 | -0/+61 | |
| |/ / | ||||||
* | | | Merge pull request #2043 from reaperhulk/nc-vectors | Alex Gaynor | 2015-06-18 | 4 | -0/+64 | |
|\ \ \ | | | | | | | | | add name constraints test vectors | |||||
| * | | | add name constraints test vectors | Paul Kehrer | 2015-06-17 | 4 | -0/+64 | |
| |/ / | ||||||
* | | | Merge pull request #2041 from reaperhulk/iap-ossl | Alex Gaynor | 2015-06-18 | 2 | -0/+30 | |
|\ \ \ | | | | | | | | | inhibit any policy extension support for the openssl backend | |||||
| * | | | inhibit any policy extension support for the openssl backend | Paul Kehrer | 2015-06-17 | 2 | -0/+30 | |
| |/ / | ||||||
* | | | Merge pull request #2042 from reaperhulk/ian-vector | Alex Gaynor | 2015-06-18 | 2 | -0/+21 | |
|\ \ \ | |/ / |/| | | add issuer alternative name test vector | |||||
| * | | add issuer alternative name test vector | Paul Kehrer | 2015-06-17 | 2 | -0/+21 | |
|/ / | ||||||
* | | Merge pull request #2038 from sholsapp/add-x509store-functions | Alex Gaynor | 2015-06-17 | 1 | -1/+5 | |
|\ \ | | | | | | | Add additional X509_STORE functions |