aboutsummaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* fix to handle malformed certificates without hostnameDominic Chen2015-10-101-0/+39
|
* Add missing license header.Terry Chia2015-10-031-0/+4
|
* Merge pull request #1773 from Ayrx/hypothesisPaul Kehrer2015-10-022-0/+16
|\ | | | | Property based testing with Hypothesis
| * Move hypothesis tests to the subfolder.Terry Chia2015-10-022-0/+5
| |
| * Remove unused import.Terry Chia2015-09-301-2/+0
| |
| * Remove unneeded line.Terry Chia2015-09-301-3/+0
| |
| * Address comments.Terry Chia2015-09-301-1/+2
| |
| * Use correct import.Terry Chia2015-09-271-1/+1
| |
| * Pin version of hypothesis above 1.11.4.Terry Chia2015-09-271-1/+4
| |
| * Add hypothesis test for Fernet.Terry Chia2015-09-261-0/+12
| |
* | test build ca request with path_length Nonevicente.fiebig2015-10-011-0/+24
| |
* | Use InternalError for stuffAlex Gaynor2015-09-261-19/+1
| |
* | fix the testsAlex Gaynor2015-09-261-1/+2
| |
* | rename this file for consistencyAlex Gaynor2015-09-261-0/+0
|/
* add test for openssl_assertPaul Kehrer2015-09-251-1/+6
|
* Some cleanupsAlex Gaynor2015-09-243-25/+25
|
* Test X9.63 with NIST test vectorsSimo Sorce2015-09-241-0/+72
| | | | Signed-off-by: Simo Sorce <simo@redhat.com>
* Add vector loader for X9.63 vectorsSimo Sorce2015-09-242-0/+130
| | | | Signed-off-by: Simo Sorce <simo@redhat.com>
* Add X963KDF from ANSI X9.63:2001Simo Sorce2015-09-241-0/+120
| | | | | | | | | | The implemention allows the use a Hash function to implement a KDF very similar to ConcatKDFHash, just different enough to require a separate derivation function. Closes #2203 Signed-off-by: Simo Sorce <simo@redhat.com>
* fix up test coverage on multibackendAlex Gaynor2015-09-221-2/+9
|
* Adds _name property to ObjectIdentifierBrendan McCollam2015-09-061-0/+6
|
* skip if check on ec testPaul Kehrer2015-08-121-1/+2
|
* Merge pull request #2262 from viraptor/non-bytes-signaturesPaul Kehrer2015-08-123-0/+31
|\ | | | | Ensure early exeption on non-bytes signature
| * Enforce signature type in ECDSA and add testsStanisław Pitucha2015-08-123-0/+31
| | | | | | | | | | Ensure that ECDSA signatures are bytes to match RSA/DSA and add tests for all three.
* | Merge pull request #2267 from queenp/iss2255Paul Kehrer2015-08-121-0/+25
|\ \ | | | | | | added get_extension_for_class #2255
| * | Swap test vector verisign for cryptography.io.pemPhoebe Queen2015-08-121-3/+3
| | |
| * | fixed pep8 errorPhoebe Queen2015-08-121-2/+2
| | |
| * | fixed pep8 errorPhoebe Queen2015-08-121-1/+1
| | |
| * | undid erroneous assertionPhoebe Queen2015-08-121-1/+0
| | |
| * | making tests more explicitPhoebe Queen2015-08-121-6/+3
| | |
| * | added test to raise errorPhoebe Queen2015-08-121-0/+16
| | |
| * | fixing pep8 errors #2255Phoebe Queen2015-08-121-1/+4
| | |
| * | added test for get_extension_for_classPhoebe Queen2015-08-121-0/+10
| | |
* | | Merge pull request #2250 from reaperhulk/fix-2246Alex Gaynor2015-08-122-23/+31
|\ \ \ | |/ / |/| | resolve incorrect docs/naming around DSA (r, s) tuple encode/decode
| * | resolve incorrect docs/naming around DSA (r, s) tuple encode/decodePaul Kehrer2015-08-102-23/+31
| | |
* | | convert the rest of the OIDs in the tests to use the new namespacesPaul Kehrer2015-08-102-45/+51
| |/ |/|
* | switch tests to use ExtensionOID namespacePaul Kehrer2015-08-102-94/+96
| |
* | switch tests to use NameOIDPaul Kehrer2015-08-102-237/+239
|/
* Merge pull request #2233 from reaperhulk/encode-nocheckAlex Gaynor2015-08-091-0/+30
|\ | | | | add support for OCSPNoCheck to the CertificateBuilder
| * add support for OCSPNoCheck to the CertificateBuilderPaul Kehrer2015-08-091-0/+30
| |
* | pep8 fixPaul Kehrer2015-08-091-2/+0
| |
* | move a testPaul Kehrer2015-08-092-26/+23
| |
* | support issuer alternative name encodingPaul Kehrer2015-08-092-2/+49
|/
* simplify the CSRBuilderPaul Kehrer2015-08-081-9/+6
|
* remove a lot of if/elif chains in the certificate builderPaul Kehrer2015-08-081-2/+2
|
* fix unsupported testPaul Kehrer2015-08-081-1/+1
|
* support InhibitAnyPolicy in CertificateBuilderPaul Kehrer2015-08-081-0/+30
|
* add support for AuthorityKeyIdentifier in CertificateBuilderPaul Kehrer2015-08-081-0/+76
|
* Merge pull request #2210 from reaperhulk/aki-classmethodAlex Gaynor2015-08-081-0/+19
|\ | | | | AuthorityKeyIdentifier classmethod
| * add AuthorityKeyIdentifier from_issuer_public_keyPaul Kehrer2015-08-081-0/+19
| | | | | | | | | | Refactored SKI's creation code into a separate function, added doctest examples