aboutsummaryrefslogtreecommitdiffstats
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* add more basic name constraints vectorPaul Kehrer2015-06-291-1/+9
|
* add new name constraints vector with invalid IP netmaskPaul Kehrer2015-06-281-0/+3
|
* Merge pull request #2069 from alex/param-orderingPaul Kehrer2015-06-261-2/+2
|\ | | | | Make the parameter ordering in sign() consistent with other code
| * fixed docsAlex Gaynor2015-06-261-1/+1
| |
| * Make the parameter ordering in sign() consistent with other codeAlex Gaynor2015-06-261-1/+1
| |
* | add wildcard IDNA SANPaul Kehrer2015-06-261-0/+3
|/
* add two missing methods to backend interface docsPaul Kehrer2015-06-261-0/+31
|
* Address review comments around add_extension methodIan Cordasco2015-06-241-2/+2
| | | | | | | | | - Fix typo in the docs (s/buidlder/builder/) - Remove default from the method declaration and docs - Replace ValueError with NotImpelementedError for unsupported X.509 extensions - Add TODO comment as requested by Alex - Fix test to pass critical=False since it no longer is a default value
* Properly use RSA fixtures to generate private keysIan Cordasco2015-06-241-1/+1
|
* Address code review regarding style and gcIan Cordasco2015-06-241-6/+2
| | | | | | | | | - Use keyword arguments for x509.BasicConstraints in several places - Use SHA256 instead of SHA1 in documented examples - Give function variables meaningful names in _encode_asn1_str - Accept a x509.BasicConstraints object in _encode_basic_constraints - Properly garbage-collect some things - Raise a NotImplementedError instead of a ValueError
* Removes set_ prefix on CSR builder method.Andre Caron2015-06-241-2/+2
|
* Lists support for DSA and EC in CSR builder.Andre Caron2015-06-241-1/+3
|
* Fully qualifies symbols in doc references.Andre Caron2015-06-241-5/+10
|
* Changes builder extension API.Andre Caron2015-06-241-6/+6
|
* Polishes builder documentation,Andre Caron2015-06-241-5/+28
|
* Adds updates docs for method chaining in CSR builder.Andre Caron2015-06-241-1/+4
|
* Adds CSR builder.Andre Caron2015-06-241-0/+41
|
* Added teh OID for ECDSA with SHA1.Alex Gaynor2015-06-231-0/+5
| | | | 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)
* add wildcard SAN x509 test vectorPaul Kehrer2015-06-232-0/+3
|
* add nameconstraints classesPaul Kehrer2015-06-211-0/+31
|
* Fixed the anchor of a URL that changed on wikipediaAlex Gaynor2015-06-201-1/+1
|
* Merge pull request #2040 from reaperhulk/policy-constraints-vectorsAlex Gaynor2015-06-181-0/+7
|\ | | | | add x509 policy constraints test vectors
| * add x509 policy constraints test vectorsPaul Kehrer2015-06-171-0/+7
| |
* | Merge pull request #2043 from reaperhulk/nc-vectorsAlex Gaynor2015-06-181-0/+7
|\ \ | | | | | | add name constraints test vectors
| * | add name constraints test vectorsPaul Kehrer2015-06-171-0/+7
| |/
* / add issuer alternative name test vectorPaul Kehrer2015-06-171-0/+2
|/
* Merge pull request #2017 from reaperhulk/issuer-alternative-nameAlex Gaynor2015-06-131-0/+22
|\ | | | | issuer alternative name support
| * issuer alternative name supportPaul Kehrer2015-06-071-0/+22
| |
* | Merge pull request #2018 from reaperhulk/ocsp-nocheck-vectorAlex Gaynor2015-06-131-0/+2
|\ \ | | | | | | add OCSPNoCheck test vector
| * | add OCSPNoCheck test vectorPaul Kehrer2015-06-071-0/+2
| |/
* | Remove mention of extract/expand operations from ConcatKDF docs.Terry Chia2015-06-131-4/+2
| |
* | cleanup a doctest and add a changelog entry for concatkdfPaul Kehrer2015-06-121-1/+0
| |
* | Add ConcatKDF from NIST SP 800-56ASimo Sorce2015-06-121-0/+187
|/ | | | | | | | | The implemention allows the use an HMAC function as per Revision 2 of the document. Conformance of the formatting of the OtherInfo argument is responsability of the calling application. Signed-off-by: Simo Sorce <simo@redhat.com>
* some docs cleanup for OTPPaul Kehrer2015-06-031-8/+14
|
* Merge pull request #1990 from tonyseek/key-uriPaul Kehrer2015-06-031-0/+41
|\ | | | | Add "get_provisioning_uri" utility for HOTP/TOTP.
| * Move the external link to page bottom.Jiangge Zhang2015-06-031-3/+4
| |
| * add license header and fix grammar errors.Jiangge Zhang2015-06-031-2/+2
| |
| * Remove a default argument and rename a private function.Jiangge Zhang2015-06-031-4/+6
| |
| * Describe provisioning URI in the document.Jiangge Zhang2015-06-031-0/+38
| |
* | Merge pull request #1907 from simo5/ECDHKDFTestsPaul Kehrer2015-06-021-1/+1
|\ \ | | | | | | Ecdh kdf tests
| * | Modify ECDH Test vector loader for KDF vectorsSimo Sorce2015-05-061-1/+1
| | | | | | | | | | | | | | | | | | Also add tests for the new vectors Signed-off-by: Simo Sorce <simo@redhat.com>
* | | docfixErik Trauschke2015-05-291-1/+1
| | |
* | | add example CRL PEM files to vectorsErik Trauschke2015-05-291-0/+16
| | |
* | | Merge pull request #1954 from reaperhulk/inhibitanypolicyAlex Gaynor2015-05-291-0/+22
|\ \ \ | | | | | | | | InhibitAnyPolicy class
| * | | InhibitAnyPolicy classPaul Kehrer2015-05-261-0/+22
| | | |
* | | | Merge pull request #1956 from etrauschke/crl_bindings_interfacesPaul Kehrer2015-05-281-1/+80
|\ \ \ \ | |/ / / |/| | | add bindings and interfaces for CRL objects
| * | | removed verify(), various small fixesErik Trauschke2015-05-281-11/+1
| | | |
| * | | doc fixes, rename rekoked -> revoked_certificatesErik Trauschke2015-05-271-3/+3
| | | |
| * | | add bindings and interfaces for CRL objectsErik Trauschke2015-05-271-1/+90
| | | |
* | | | update all 0.10 to 1.0Paul Kehrer2015-05-261-1/+1
| |_|/ |/| |