aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* pep8 fixPaul Kehrer2015-08-091-2/+0
|
* move a testPaul Kehrer2015-08-092-26/+23
|
* support issuer alternative name encodingPaul Kehrer2015-08-093-4/+52
|
* Merge pull request #2231 from reaperhulk/simplify-certbuilderAlex Gaynor2015-08-094-100/+44
|\ | | | | Simplify Cert and CSR Builder
| * move encode out of try blocksPaul Kehrer2015-08-091-2/+2
| |
| * update changelogPaul Kehrer2015-08-081-9/+4
| |
| * simplify the CSRBuilderPaul Kehrer2015-08-083-32/+15
| |
| * remove a lot of if/elif chains in the certificate builderPaul Kehrer2015-08-083-59/+25
| |
* | Merge pull request #2234 from reaperhulk/versionaddedAlex Gaynor2015-08-091-0/+4
|\ \ | |/ |/| add versionadded to the get_provision_uri methods on TOTP/HOTP
| * add versionadded to the get_provision_uri methods on TOTP/HOTPPaul Kehrer2015-08-091-0/+4
|/
* Merge pull request #2230 from reaperhulk/encode-iapAlex Gaynor2015-08-086-3/+52
|\ | | | | support InhibitAnyPolicy in CertificateBuilder
| * fix unsupported testPaul Kehrer2015-08-082-3/+5
| |
| * support InhibitAnyPolicy in CertificateBuilderPaul Kehrer2015-08-085-0/+47
|/
* Merge pull request #2229 from alex/py34-pep8Paul Kehrer2015-08-082-2/+2
|\ | | | | use python34 for py3pep8. no sense advertising an out of date python
| * use python34 for py3pep8. no sense advertising an out of date pythonAlex Gaynor2015-08-082-2/+2
| |
* | Merge pull request #2228 from alex/rand-intPaul Kehrer2015-08-081-0/+8
|\ \ | | | | | | Document how to get a random number as an integer, fixes #2190
| * | Document how to get a random number as an integer, fixes #2190Alex Gaynor2015-08-081-0/+8
| |/
* | Merge pull request #2215 from reaperhulk/changelog-updateAlex Gaynor2015-08-081-1/+7
|\ \ | | | | | | Changelog update: extensions we support for CertificateBuilder
| * | list all the other extensions we support for CertificateBuilderPaul Kehrer2015-08-061-1/+7
| | |
* | | Merge pull request #2213 from reaperhulk/encode-akiAlex Gaynor2015-08-083-0/+112
|\ \ \ | |_|/ |/| | Support AuthorityKeyIdentifier in CertificateBuilder
| * | add support for AuthorityKeyIdentifier in CertificateBuilderPaul Kehrer2015-08-083-0/+112
| | |
* | | Merge pull request #2226 from lluixhi/masterPaul Kehrer2015-08-081-1/+1
|\ \ \ | |/ / |/| | Fix build with LibreSSL >= 2.2.2
| * | Fix build with LibreSSL >= 2.2.2Lluixhi Scura2015-08-081-1/+1
| | | | | | | | | | | | LIBRESSL_VERSION_NUMBER is now being incremented.
* | | Merge pull request #2210 from reaperhulk/aki-classmethodAlex Gaynor2015-08-083-18/+89
|\ \ \ | | | | | | | | AuthorityKeyIdentifier classmethod
| * | | address review commentsPaul Kehrer2015-08-082-7/+12
| | | |
| * | | update prose for from_issuer_public_keyPaul Kehrer2015-08-081-4/+8
| | | |
| * | | add AuthorityKeyIdentifier from_issuer_public_keyPaul Kehrer2015-08-083-18/+80
| |/ / | | | | | | | | | | | | Refactored SKI's creation code into a separate function, added doctest examples
* | | Merge pull request #2227 from reaperhulk/cp-bindingsAlex Gaynor2015-08-082-0/+5
|\ \ \ | | | | | | | | more openssl bindings for encoding certificate policy structures
| * | | more openssl bindings for encoding certificate policy structuresPaul Kehrer2015-08-082-0/+5
|/ / /
* | | Merge pull request #2208 from reaperhulk/encode-skiAlex Gaynor2015-08-084-0/+54
|\ \ \ | |/ / |/| | Support SubjectKeyIdentifier in CertificateBuilder
| * | add support for encoding SubjectKeyIdentifier to CertificateBuilderPaul Kehrer2015-08-084-0/+54
|/ /
* | Merge pull request #2204 from reaperhulk/ski-classmethodAlex Gaynor2015-08-084-4/+117
|\ \ | | | | | | SubjectKeyIdentifier classmethod
| * | py3 int.to_bytes is dead to mePaul Kehrer2015-08-082-11/+5
| | |
| * | update commentPaul Kehrer2015-08-081-1/+1
| | |
| * | add more prose about how the digest is generatedPaul Kehrer2015-08-081-1/+3
| | |
| * | refactor integer to bytes as utils.int_to_bytesPaul Kehrer2015-08-082-5/+14
| | |
| * | assert not remaining in SKI classmethodPaul Kehrer2015-08-071-0/+1
| | |
| * | rename to classmethod to from_public_keyPaul Kehrer2015-08-053-8/+8
| | |
| * | add SubjectKeyIdentifier.create_from_public_keyPaul Kehrer2015-08-053-4/+111
| | |
* | | Merge pull request #2198 from reaperhulk/encode-crlAlex Gaynor2015-08-084-2/+224
|\ \ \ | | | | | | | | support CRLDistributionPoints in the CertificateBuilder
| * | | move distpoint fullname/relativename to consts in backends.openssl.x509Paul Kehrer2015-08-082-5/+9
| | | |
| * | | switch to _encode_general_names.Paul Kehrer2015-08-081-8/+1
| | | | | | | | | | | | | | | | I knew I made that for a reason, thanks Alex
| * | | remove a double for loop that made literally no sensePaul Kehrer2015-08-081-6/+5
| | | |
| * | | modify a CRL encode test to have multiple full_namesPaul Kehrer2015-08-081-3/+8
| | | |
| * | | switch ReasonFlags bit string setting to use a dict mappingPaul Kehrer2015-08-081-40/+18
| | | |
| * | | support relativename encoding using X509_NAMEPaul Kehrer2015-08-081-3/+6
| | | | | | | | | | | | | | | | X509_NAME contains a STACK_OF(X509_NAME_ENTRY) which we duplicate
| * | | add missing testPaul Kehrer2015-08-081-0/+25
| | | |
| * | | support CRLDistributionPoints in the CertificateBuilderPaul Kehrer2015-08-083-0/+215
| | | |
* | | | Merge pull request #2225 from alex/error-messagePaul Kehrer2015-08-081-1/+2
|\ \ \ \ | |/ / / |/| | | Provide a better error message here.
| * | | Provide a better error message here.Alex Gaynor2015-08-081-1/+2
|/ / /