aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Merge pull request #897 from alex/no-more-subclasses-jumping-on-the-bedPaul Kehrer2014-04-072-28/+56
|\ \ \ | |/ / |/| | Replace subclassing of six.with_metaclass with a class decorator
| * | Replace subclassing of six.with_metaclass with a class decoratorAlex Gaynor2014-04-072-28/+56
|/ /
* | Merge pull request #892 from reaperhulk/bn-fixAlex Gaynor2014-04-061-1/+1
|\ \ | |/ |/| BN_cmp returns an int, not a BIGNUM *
| * BN_cmp returns an int, not a BIGNUM *Paul Kehrer2014-04-051-1/+1
|/
* Merge pull request #891 from public/bn-ctx-bindingPaul Kehrer2014-04-051-0/+8
|\ | | | | BN_CTX bindings
| * BN_cmp macroAlex Stapleton2014-04-051-0/+1
| |
| * BN_CTX bindingsAlex Stapleton2014-04-051-0/+7
|/
* Merge pull request #890 from alex/import-cleanupPaul Kehrer2014-04-052-7/+4
|\ | | | | Some cleanups to imports
| * pep8, ironyAlex Gaynor2014-04-051-1/+0
| |
| * Some cleanups to importsAlex Gaynor2014-04-052-6/+4
| |
* | Merge pull request #889 from public/more-ec-bindingsAlex Gaynor2014-04-051-4/+414
|\ \ | |/ |/| Bindings for more EC stuff
| * Bindings for more EC stuffAlex Stapleton2014-04-051-4/+414
| |
* | Merge pull request #739 from skeuomorf/dsa-backendPaul Kehrer2014-04-0511-7/+304
|\ \ | | | | | | DSA backend
| * | Add docs for DSA parameters and key generationMohammed Attia2014-04-043-6/+95
| | |
| * | Add DSABackendMohammed Attia2014-04-049-19/+121
| | |
| * | Add tests for DSA parameters and key generationMohammed Attia2014-04-034-6/+58
| | |
| * | Add generation methods and remove the optional arguments from the backendMohammed Attia2014-04-032-31/+32
| | |
| * | Add key_size to GCMohammed Attia2014-04-021-2/+8
| | |
| * | Remove validation from the backend since it's already done through the APIMohammed Attia2014-04-021-21/+2
| | |
| * | Add basic DSA backend methodsMohammed Attia2014-04-021-2/+68
| | |
* | | Merge pull request #887 from public/rename-openssl-vectorsDavid Reid2014-04-037-0/+0
|\ \ \ | | | | | | | | Rename vectors now we have a name for this format
| * | | Rename vectors now we have a name for this formatAlex Stapleton2014-04-037-0/+0
|/ / /
* | | Merge pull request #883 from reaperhulk/deprecation-danceAlex Gaynor2014-04-038-78/+183
|\ \ \ | | | | | | | | move salt_length from MGF1 to PSS and start deprecation cycle
| * | | deprecation cycle post-release instructionsPaul Kehrer2014-04-021-0/+3
| | | |
| * | | DummyMGF needs a _salt_length tooPaul Kehrer2014-04-021-1/+1
| | | |
| * | | move DeprecatedIn04 to utils, some kwargs changesPaul Kehrer2014-04-024-8/+8
| | | |
| * | | address review commentsPaul Kehrer2014-04-024-9/+18
| | | |
| * | | move salt_length from MGF1 to PSS and start deprecation cyclePaul Kehrer2014-04-026-77/+170
| | | |
* | | | Merge pull request #886 from skeuomorf/rsa-docsAlex Gaynor2014-04-031-3/+3
|\ \ \ \ | |/ / / |/| | | Remove 'Must be at least 512.' statement from RSA's docs
| * | | Remove 'Must be at least 512.' statement from RSA's docsMohammed Attia2014-04-031-3/+3
| |/ /
* | | Merge pull request #884 from reaperhulk/post-release-tasksAlex Gaynor2014-04-021-0/+10
|\ \ \ | | | | | | | | add new post-release tasks section
| * | | some updates to please the spellcheckerPaul Kehrer2014-04-021-3/+3
| | | |
| * | | add new post-release tasks section to help release managersPaul Kehrer2014-04-021-0/+10
| | | |
* | | | Merge pull request #882 from alex/bookPaul Kehrer2014-04-021-2/+4
|\ \ \ \ | | | | | | | | | | Recommend @lvh's book
| * | | | Recommend @lvh's bookAlex Gaynor2014-04-021-2/+4
| | | | |
* | | | | Merge pull request #885 from exarkun/X509_STORE_CTX-paraphernaliaAlex Gaynor2014-04-021-0/+4
|\ \ \ \ \ | |/ / / / |/| | | | Bind a few APIs related to X509_STORE_CTX structures.
| * | | | Bind a few APIs related to X509_STORE_CTX structures.Jean-Paul Calderone2014-04-021-0/+4
| | | | |
* | | | | Merge pull request #872 from saschpe/master-platlib-installationDonald Stufft2014-04-021-18/+34
|\ \ \ \ \ | |_|/ / / |/| | | | Add custom 'install' command class
| * | | | Add custom 'install' command classSascha Peilicke2014-04-011-18/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CFFIBuild adds ext_modules late in the configuration phase. However, distutils default 'install' command also parses setup.py and thus misses that cffi contains several extension modules rather than being pure. As a consequence, add a CFFIInstall with a proper finalize_options method and use it.
* | | | | Merge pull request #880 from public/ed25519-vectorsAlex Gaynor2014-04-022-0/+1026
|\ \ \ \ \ | | | | | | | | | | | | Ed25519 vectors
| * | | | | Update docsAlex Stapleton2014-04-021-0/+2
| | | | | |
| * | | | | Ed25519 test vectorsAlex Stapleton2014-04-021-0/+1024
|/ / / / /
* | | | | Merge pull request #879 from public/ecdsa-vectorsPaul Kehrer2014-04-0213-3/+31814
|\ \ \ \ \ | |_|_|/ / |/| | | | ECDSA vectors from NIST CAVP
| * | | | Update docsAlex Stapleton2014-04-021-3/+2
| | | | |
| * | | | FIPS 186-3 ECDSA CAVP vectorsAlex Stapleton2014-04-026-0/+25558
| | | | |
| * | | | FIPS 186-2 ECDSA CAVP vectorsAlex Stapleton2014-04-026-0/+6254
|/ / / /
* | | | Merge pull request #876 from public/unsupported-algorithm-asym-tagsPaul Kehrer2014-04-015-13/+24
|\ \ \ \ | |/ / / |/| | | Extra UnsupportedAlgorithm reason tags
| * | | fix pep8 errorsAlex Stapleton2014-04-012-3/+1
| | | |
| * | | Add _Reasons.UNSUPPORTED_PUBLIC_KEY_ALGORITHMAlex Stapleton2014-04-013-6/+16
| | | |
| * | | Add _Reasons.UNSUPPORTED_MGFAlex Stapleton2014-04-013-4/+7
|/ / /