aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* make our docs job nitpicky and fix every broken linkPaul Kehrer2015-02-1214-74/+60
|
* Merge pull request #1655 from reaperhulk/x509-interface-whatAlex Gaynor2015-02-122-43/+2
|\ | | | | remove unused X509 certificate interface
| * remove unused X509 certificate interfacePaul Kehrer2015-02-122-43/+2
|/ | | | | | We merged this interface and then changed our approach and use the cryptography.x509.Certificate interface instead. This one was never directly used.
* Merge pull request #1652 from reaperhulk/move-ecAlex Stapleton2015-02-129-269/+303
|\ | | | | Move EC interface definitions
| * add changelog entry for EC movePaul Kehrer2015-02-121-0/+9
| |
| * move EC interfacesPaul Kehrer2015-02-128-269/+294
| |
* | Merge pull request #1653 from reaperhulk/dsa-interface-move-docsAlex Stapleton2015-02-121-0/+6
|\ \ | |/ |/| document that we moved the DSA interfaces
| * document that we moved the DSA interfacesPaul Kehrer2015-02-121-0/+6
|/
* Merge pull request #1650 from alex/x509-covPaul Kehrer2015-02-101-0/+4
|\ | | | | Added test coverage for missing branch.
| * Added test coverage for missing branch.Alex Gaynor2015-02-101-0/+4
|/
* Merge pull request #1645 from reaperhulk/x509-attrsAlex Gaynor2015-02-104-0/+252
|\ | | | | add attribute and objectidentifier classes for x509 name
| * note that the OIDs listed are typically seen in x.509 namesPaul Kehrer2015-02-071-17/+29
| |
| * more x509 oid doc updatesPaul Kehrer2015-02-071-4/+12
| |
| * whoopsPaul Kehrer2015-02-061-16/+16
| |
| * more doc fixesPaul Kehrer2015-02-062-18/+18
| |
| * add descriptions to each OID constant, update object to instancePaul Kehrer2015-02-052-1/+33
| |
| * rename ObjectIdentifier.value to dotted_stringPaul Kehrer2015-02-042-6/+7
| |
| * fix some formatting in the docsPaul Kehrer2015-02-041-2/+2
| |
| * UnknownNameAttribute is not needed nowPaul Kehrer2015-02-042-10/+0
| |
| * rename Attribute to NameAttribute and remove name from OIDPaul Kehrer2015-02-023-59/+68
| |
| * add some prose trying to explain Attribute and ObjectIdentifierPaul Kehrer2015-01-301-0/+5
| |
| * update docsPaul Kehrer2015-01-302-1/+5
| |
| * add attribute and objectidentifier classes for x509 namePaul Kehrer2015-01-293-0/+191
| |
* | Merge pull request #1642 from alex/not-all-pemsPaul Kehrer2015-01-271-0/+8
|\ \ | | | | | | Have the pem public/private key loading docs point to x.509
| * | Have the pem public/private key loading docs point to x.509Alex Gaynor2015-01-271-0/+8
|/ /
* | Merge pull request #1641 from alex/public-key-examplePaul Kehrer2015-01-271-0/+15
|\ \ | |/ |/| Include an example of loading a public key
| * Include an example of loading a public keyAlex Gaynor2015-01-271-0/+15
|/
* Merge pull request #1592 from public/move-rsa-interfacesPaul Kehrer2015-01-248-203/+260
|\ | | | | Move RSA*Key interfaces to cryptography.hazmat.primitives.asymmetric.rsa
| * Move RSA*Key interfaces to cryptography.hazmat.primitives.asymmetric.rsaAlex Stapleton2015-01-248-203/+260
|/
* Merge pull request #1634 from public/deprecate-dsaPaul Kehrer2015-01-2310-294/+352
|\ | | | | Move DSA* interfaces to interfaces.dsa module
| * Move around bits of the EC test suite to work around awful PyPy bugAlex Stapleton2015-01-222-18/+20
| |
| * Move DSA* interfaces to interfaces.dsa moduleAlex Stapleton2015-01-228-276/+332
| |
* | Merge pull request #1638 from reaperhulk/102-final-docAlex Gaynor2015-01-221-1/+1
|\ \ | |/ |/| we now test against 1.0.2 final
| * we now test against 1.0.2 finalPaul Kehrer2015-01-221-1/+1
|/
* Merge pull request #1633 from reaperhulk/fix-975Alex Gaynor2015-01-184-0/+94
|\ | | | | recover (p, q) given (n, e, d)
| * doc updatePaul Kehrer2015-01-181-2/+2
| |
| * move attempts to a constant and add a comment about itPaul Kehrer2015-01-181-1/+7
| |
| * various improvements to rsa_recover_prime_factors per review feedbackPaul Kehrer2015-01-183-16/+9
| |
| * recover (p, q) given (n, e, d). fixes #975Paul Kehrer2015-01-184-0/+95
|/
* Merge pull request #1632 from reaperhulk/add-new-x509-certsAlex Gaynor2015-01-184-0/+88
|\ | | | | add two custom certificates for x509 name parsing tests
| * add utf8 certificatePaul Kehrer2015-01-172-0/+21
| |
| * wrap a thingPaul Kehrer2015-01-171-1/+2
| |
| * add two custom certificates for x509 name parsing testsPaul Kehrer2015-01-173-0/+66
|/
* Merge pull request #1609 from reaperhulk/der-multibackendAlex Gaynor2015-01-172-6/+46
|\ | | | | DER multibackend
| * add multibackend support for DERSerializationBackendPaul Kehrer2015-01-172-6/+46
|/
* Merge pull request #1608 from reaperhulk/der-backend-interfacesAlex Gaynor2015-01-172-0/+40
|\ | | | | add DER backend interfaces
| * fix spelling errorPaul Kehrer2015-01-171-1/+1
| |
| * add DER backend interfacesPaul Kehrer2015-01-042-0/+40
| |
* | Merge pull request #1605 from greghaynes/feature/split-out-interfaces-asymmetricPaul Kehrer2015-01-174-162/+206
|\ \ | | | | | | Split out asymmetric key interfaces
| * | Only split out ec and dsaGregory Haynes2015-01-032-84/+67
| | | | | | | | | | | | RSA is being mvoed out of the interfaces namespace in PR #1592.