aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1179 from reaperhulk/dsa-numbers-opaque-backendDavid Reid2014-06-275-68/+268
|\ | | | | DSA Opaque Keys for OpenSSL
| * rename backend method, add some docsPaul Kehrer2014-06-273-6/+6
| |
| * add generate_private_key to DSAParameters + add a new function to dsaPaul Kehrer2014-06-275-3/+20
| | | | | | | | | | | | | | dsa.generate_private_key(key_size, backend) will allow you to generate a new DSA key and implicitly generate new parameters. This streamlines the common case and will be an avenue to support future backends that don't allow independent generation of DSAParameters (e.g. CommonCrypto)
| * move where we gc dsa data, improve dsa key checkingPaul Kehrer2014-06-262-23/+29
| |
| * DSA opaque OpenSSLPaul Kehrer2014-06-253-56/+233
| |
* | Make OpenSSL RSA key_size attr read onlyPaul Kehrer2014-06-251-2/+10
| |
* | Split OpenSSL backend into separate files (hashes)Paul Kehrer2014-06-252-51/+71
| |
* | Merge pull request #1173 from Ayrx/ecc-fixAlex Stapleton2014-06-251-9/+15
|\ \ | | | | | | Fixed Fedora 20 ECC error
| * | Fixed AssertionError on missing curvesAyrx2014-06-241-9/+15
| | |
* | | Split OpenSSL backend into separate files (hmac/cmac)Paul Kehrer2014-06-253-121/+162
| |/ |/|
* | rename cipher->ciphersPaul Kehrer2014-06-242-1/+1
| |
* | Split OpenSSL backend into separate files (cipher contexts)Paul Kehrer2014-06-242-201/+223
| |
* | Merge pull request #1176 from reaperhulk/split-openssl-backend-dsaAlex Gaynor2014-06-242-69/+90
|\ \ | | | | | | Split OpenSSL backend into separate files (DSA)
| * | Split OpenSSL backend into separate files (DSA)Paul Kehrer2014-06-242-69/+90
| | |
* | | Merge pull request #1132 from public/opaque-dsa-interfacesPaul Kehrer2014-06-241-61/+1
|\ \ \ | |/ / |/| | Remove numbers from DSA interfaces
| * | Remove numbers from DSA interfacesAlex Stapleton2014-06-141-61/+1
| | |
* | | Merge pull request #1174 from reaperhulk/split-openssl-backend-rsaAlex Gaynor2014-06-242-468/+496
|\ \ \ | | | | | | | | Split OpenSSL backend into separate files (RSA)
| * | | Split OpenSSL backend into separate files (RSA)Paul Kehrer2014-06-232-468/+496
| | | |
* | | | Merge pull request #1168 from reaperhulk/dsa-with-numbers-interfacesAlex Gaynor2014-06-231-0/+27
|\ \ \ \ | |/ / / |/| | | add DSAWithNumbers subinterfaces
| * | | add DSAWithNumbers subinterfacesPaul Kehrer2014-06-231-0/+27
| | | |
* | | | Merge pull request #1172 from reaperhulk/split-openssl-backend-ecAlex Gaynor2014-06-232-152/+179
|\ \ \ \ | | | | | | | | | | Split OpenSSL backend into separate files (EC)
| * | | | Split OpenSSL backend into separate files (EC)Paul Kehrer2014-06-232-152/+179
| | |_|/ | |/| |
* | | | Merge pull request #1163 from reaperhulk/dsa-numbers-classesAlex Gaynor2014-06-231-0/+71
|\ \ \ \ | |/ / / |/| | | DSA*Numbers classes
| * | | fix some languagePaul Kehrer2014-06-231-1/+1
| | | |
| * | | remove parameter_numbers from DSAPrivateNumbers since it's on publicPaul Kehrer2014-06-231-11/+1
| | | |
| * | | DSA*Numbers classesPaul Kehrer2014-06-221-0/+81
| | | |
* | | | Merge pull request #1152 from public/fedora20-ec-fixPaul Kehrer2014-06-232-27/+42
|\ \ \ \ | |_|/ / |/| | | Fix EC issue on Fedora 20
| * | | Check the error code properlyAlex Stapleton2014-06-211-1/+1
| | | |
| * | | Change branches for better coverageAlex Stapleton2014-06-211-2/+5
| | | |
| * | | Fix EC issue on Fedora 20Alex Stapleton2014-06-202-27/+39
| | | |
* | | | Merge pull request #1164 from reaperhulk/dsa-numbers-loadingAlex Stapleton2014-06-231-0/+18
|\ \ \ \ | | | | | | | | | | add new DSABackend interface methods for loading numbers
| * | | | add new DSABackend interface methods for loading numbersPaul Kehrer2014-06-221-0/+18
| | |/ / | |/| |
* | | | Fix dsa.py comment styleLaurens Van Houtven2014-06-231-5/+5
| | | |
* | | | Fix dh.py comment styleLaurens Van Houtven2014-06-231-4/+4
| | | |
* | | | Fix common_cryptor.py comment styleLaurens Van Houtven2014-06-231-1/+1
| | | |
* | | | Fix err.py comment styleLaurens Van Houtven2014-06-231-2/+2
| | | |
* | | | Fix nid.py comment styleLaurens Van Houtven2014-06-231-1/+1
| | | |
* | | | Fix cms.py comment styleLaurens Van Houtven2014-06-231-2/+2
| | | |
* | | | Make the evp.py comment a full sentenceLaurens Van Houtven2014-06-231-1/+2
| | | |
* | | | Fix evp.py comment styleLaurens Van Houtven2014-06-231-1/+1
| | | |
* | | | Fix aes.py comment styleLaurens Van Houtven2014-06-231-1/+1
| | | |
* | | | Fix x509.py comment styleLaurens Van Houtven2014-06-231-1/+1
| | | |
* | | | Fix rsa.py comment styleLaurens Van Houtven2014-06-231-1/+1
| | | |
* | | | Fix ssl.py comment styleLaurens Van Houtven2014-06-231-3/+3
| | | |
* | | | Fix x509_vfy.py comment styleLaurens Van Houtven2014-06-231-15/+16
| | | |
* | | | Merge pull request #1155 from reaperhulk/fix-1111David Reid2014-06-222-8/+6
|\ \ \ \ | | | | | | | | | | modify RSA numbers loading to match elliptic curve
| * | | | modify RSA numbers loading to match elliptic curvePaul Kehrer2014-06-202-8/+6
| | | | | | | | | | | | | | | | | | | | fixes #1111
* | | | | these are abstract methodsPaul Kehrer2014-06-221-0/+2
| |/ / / |/| | |
* | | | a few fixes,, remove unneeded conditional on bindingPaul Kehrer2014-06-211-13/+3
| | | |
* | | | Add many (all?) X509_STORE_CTX methodsLaurens Van Houtven2014-06-211-0/+31
| | | |