Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #1651 from reaperhulk/x509-signature-algorithm | Alex Gaynor | 2015-02-19 | 3 | -8/+73 |
|\ | | | | | X509 certificate signature algorithm support | ||||
| * | surrender to alex's feels and name our constants consistently | Paul Kehrer | 2015-02-19 | 1 | -12/+12 |
| | | |||||
| * | address review feedback, fix short names for sig alg OIDs | Paul Kehrer | 2015-02-19 | 1 | -21/+21 |
| | | |||||
| * | refactor obj2txt to be a separate method | Paul Kehrer | 2015-02-14 | 1 | -15/+11 |
| | | |||||
| * | address review feedback | Paul Kehrer | 2015-02-14 | 2 | -23/+19 |
| | | |||||
| * | implement signature_hash_algorithm instead | Paul Kehrer | 2015-02-14 | 2 | -4/+31 |
| | | |||||
| * | add support for signature_algorithm in x509.Certificate | Paul Kehrer | 2015-02-14 | 3 | -0/+46 |
| | | |||||
* | | Simplify x509.Name.get_attributes_for_oid | Alex Gaynor | 2015-02-19 | 1 | -1/+1 |
| | | |||||
* | | move some compression things around for libre | Paul Kehrer | 2015-02-19 | 1 | -4/+15 |
| | | |||||
* | | move COMP_METHOD define and change to typedef for libre | Paul Kehrer | 2015-02-19 | 1 | -8/+8 |
| | | |||||
* | | Disable features exclusive to newer OpenSSL when using LibreSSL | Steven McDonald | 2015-02-19 | 1 | -2/+2 |
| | | | | | | | | | | Some features added to newer OpenSSL versions are absent in LibreSSL, so don't mark these as present if LIBRESSL_VERSION_NUMBER is defined. | ||||
* | | Define COMP_METHOD when building against LibreSSL | Steven McDonald | 2015-02-19 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | LibreSSL no longer uses compression in ssl.h, so the case that was formerly activated by defining OPENSSL_NO_COMP is now the default, and COMP_METHOD isn't defined (it's defined in comp.h, but that's no longer included by ssl.h). In order to make all the type definitions here line up with what's actually in LibreSSL's ssl.h, define COMP_METHOD as void. This definition is still compatible with the later type declaration in ssl.py: typedef ... COMP_METHOD; | ||||
* | | conditionally bind cryptodev engine for LibreSSL | Paul Kehrer | 2015-02-19 | 1 | -2/+14 |
| | | |||||
* | | conditionally bind EGD for libressl | Paul Kehrer | 2015-02-19 | 1 | -4/+19 |
| | | |||||
* | | move KDF interface | Paul Kehrer | 2015-02-16 | 4 | -21/+38 |
| | | |||||
* | | move asymmetric signature/verification interfaces | Paul Kehrer | 2015-02-16 | 5 | -42/+73 |
| | | |||||
* | | move asymmetric padding interface to primitives.asymmetric.padding | Paul Kehrer | 2015-02-16 | 3 | -24/+37 |
| | | |||||
* | | Merge pull request #1659 from reaperhulk/move-cipher-interfaces | Alex Stapleton | 2015-02-16 | 10 | -206/+312 |
|\ \ | | | | | | | Move cipher and mode interfaces | ||||
| * | | export interfaces from base in ciphers, update docs | Paul Kehrer | 2015-02-14 | 6 | -29/+37 |
| | | | |||||
| * | | move padding | Paul Kehrer | 2015-02-13 | 2 | -17/+29 |
| | | | |||||
| * | | move cipher and mode interfaces | Paul Kehrer | 2015-02-13 | 8 | -187/+273 |
| | | | |||||
* | | | Fixed new flake8 warnings from teh latest version | Alex Gaynor | 2015-02-15 | 1 | -7/+8 |
| |/ |/| | |||||
* | | Merge pull request #1612 from reaperhulk/x509-dn | Alex Gaynor | 2015-02-14 | 2 | -0/+80 |
|\ \ | |/ |/| | X509 distinguished name parsing support in the OpenSSL backend | ||||
| * | simplify things based on review feedback | Paul Kehrer | 2015-02-14 | 2 | -1/+2 |
| | | |||||
| * | update buffer length for OBJ_obj2txt | Paul Kehrer | 2015-02-13 | 1 | -1/+3 |
| | | |||||
| * | make x509.Name iterable and address other review feedback | Paul Kehrer | 2015-02-13 | 1 | -5/+7 |
| | | |||||
| * | refactor x509.Name to use get_attributes_by_oid | Paul Kehrer | 2015-02-12 | 2 | -62/+2 |
| | | |||||
| * | X509 distinguished name parsing support in the OpenSSL backend | Paul Kehrer | 2015-02-12 | 2 | -0/+135 |
| | | |||||
* | | move hash interfaces | Paul Kehrer | 2015-02-13 | 8 | -73/+99 |
|/ | |||||
* | Merge pull request #1656 from reaperhulk/nameattribute-repr | Donald Stufft | 2015-02-12 | 1 | -0/+6 |
|\ | | | | | add repr for x509.NameAttribute | ||||
| * | add repr for x509.NameAttribute | Paul Kehrer | 2015-02-12 | 1 | -0/+6 |
| | | |||||
* | | remove unused X509 certificate interface | Paul Kehrer | 2015-02-12 | 1 | -39/+0 |
|/ | | | | | | We merged this interface and then changed our approach and use the cryptography.x509.Certificate interface instead. This one was never directly used. | ||||
* | move EC interfaces | Paul Kehrer | 2015-02-12 | 5 | -125/+167 |
| | |||||
* | add descriptions to each OID constant, update object to instance | Paul Kehrer | 2015-02-05 | 1 | -1/+3 |
| | |||||
* | rename ObjectIdentifier.value to dotted_string | Paul Kehrer | 2015-02-04 | 1 | -5/+6 |
| | |||||
* | UnknownNameAttribute is not needed now | Paul Kehrer | 2015-02-04 | 1 | -4/+0 |
| | |||||
* | rename Attribute to NameAttribute and remove name from OID | Paul Kehrer | 2015-02-02 | 1 | -26/+40 |
| | |||||
* | add attribute and objectidentifier classes for x509 name | Paul Kehrer | 2015-01-29 | 1 | -0/+73 |
| | |||||
* | Move RSA*Key interfaces to cryptography.hazmat.primitives.asymmetric.rsa | Alex Stapleton | 2015-01-24 | 2 | -63/+104 |
| | |||||
* | Move around bits of the EC test suite to work around awful PyPy bug | Alex Stapleton | 2015-01-22 | 1 | -5/+7 |
| | |||||
* | Move DSA* interfaces to interfaces.dsa module | Alex Stapleton | 2015-01-22 | 4 | -103/+152 |
| | |||||
* | move attempts to a constant and add a comment about it | Paul Kehrer | 2015-01-18 | 1 | -1/+7 |
| | |||||
* | various improvements to rsa_recover_prime_factors per review feedback | Paul Kehrer | 2015-01-18 | 1 | -4/+4 |
| | |||||
* | recover (p, q) given (n, e, d). fixes #975 | Paul Kehrer | 2015-01-18 | 1 | -0/+45 |
| | |||||
* | add multibackend support for DERSerializationBackend | Paul Kehrer | 2015-01-17 | 1 | -3/+22 |
| | |||||
* | Merge pull request #1608 from reaperhulk/der-backend-interfaces | Alex Gaynor | 2015-01-17 | 1 | -0/+16 |
|\ | | | | | add DER backend interfaces | ||||
| * | fix spelling error | Paul Kehrer | 2015-01-17 | 1 | -1/+1 |
| | | |||||
| * | add DER backend interfaces | Paul Kehrer | 2015-01-04 | 1 | -0/+16 |
| | | |||||
* | | Merge pull request #1605 from greghaynes/feature/split-out-interfaces-asymmetric | Paul Kehrer | 2015-01-17 | 4 | -162/+206 |
|\ \ | | | | | | | Split out asymmetric key interfaces | ||||
| * | | Only split out ec and dsa | Gregory Haynes | 2015-01-03 | 2 | -84/+67 |
| | | | | | | | | | | | | RSA is being mvoed out of the interfaces namespace in PR #1592. |