Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Unused | lloyd | 2013-12-27 | 1 | -7/+0 |
| | |||||
* | Cleanup | lloyd | 2013-12-27 | 2 | -19/+17 |
| | |||||
* | Clean up GCM. Add CLMUL support. | lloyd | 2013-12-27 | 4 | -52/+220 |
| | |||||
* | Report size | lloyd | 2013-12-27 | 1 | -1/+1 |
| | |||||
* | Avoid inline std::string constructors for OID constants | lloyd | 2013-12-27 | 3 | -190/+197 |
| | |||||
* | Support multiple ISA requirements. Fix CLMUL flag. | lloyd | 2013-12-27 | 2 | -2/+2 |
| | |||||
* | Split up libstate/get_enc.cpp | lloyd | 2013-12-25 | 7 | -117/+119 |
| | |||||
* | Store OID info in a pair of maps in distinct storage rather than in | lloyd | 2013-12-25 | 10 | -451/+407 |
| | | | | | the library state. Remove library state config apis, as OIDS were the last remaining user. | ||||
* | Use a const reference return | lloyd | 2013-12-25 | 2 | -3/+3 |
| | |||||
* | Add EC groups | lloyd | 2013-12-25 | 1 | -0/+307 |
| | |||||
* | Move add_alias and deref_alias from Library_State to SCAN_Name | lloyd | 2013-12-25 | 10 | -86/+67 |
| | |||||
* | Same for EC groups | lloyd | 2013-12-25 | 6 | -278/+18 |
| | |||||
* | Store all DH group info in constant memory instead of Library_State config | lloyd | 2013-12-25 | 10 | -362/+373 |
| | | | | | | Remove all groups under 1024 bits Make workfactor.h public | ||||
* | Make Serialized_RNG public | lloyd | 2013-12-25 | 4 | -105/+60 |
| | |||||
* | Remove global_rng calls for setting up blinding, instead require a RNG | lloyd | 2013-12-25 | 18 | -104/+114 |
| | | | | | | be passed to the engine. Currently pubkey.cpp just passes along the global_rng but eventually we'll break this API and require a RNG to the constructor. | ||||
* | Add CPUID check for AVX-512 | lloyd | 2013-12-25 | 2 | -2/+9 |
| | |||||
* | Interleave two blocks during Threefish AVX2 encrypt | lloyd | 2013-12-25 | 1 | -59/+159 |
| | |||||
* | Add Threefish-512 AVX2 decrypt | lloyd | 2013-12-25 | 4 | -14/+130 |
| | |||||
* | Provide Threefish as a block cipher, add decryption | lloyd | 2013-12-25 | 5 | -119/+129 |
| | |||||
* | Add Threefish-512 in AVX2 | lloyd | 2013-12-24 | 6 | -30/+226 |
| | | | | Tested using Intel's SDE, but no idea how fast it will be on hardware. | ||||
* | Set -m flags for rdrand.cpp. Update compiler ISA flags | lloyd | 2013-12-23 | 6 | -19/+31 |
| | |||||
* | Add info for SRP-GCM | lloyd | 2013-12-21 | 1 | -0/+23 |
| | |||||
* | Make Simd_Scalar of generic size | lloyd | 2013-12-21 | 2 | -114/+105 |
| | |||||
* | Fix gcc cpuid call | lloyd | 2013-12-21 | 1 | -13/+9 |
| | |||||
* | Fixes for alamgamation build | lloyd | 2013-12-20 | 2 | -5/+5 |
| | |||||
* | Blind fix attempt for Visual C++ 2013 (github issue #5) | lloyd | 2013-12-20 | 1 | -1/+1 |
| | |||||
* | Add missing header for FreeBSD 10 | lloyd | 2013-12-19 | 3 | -0/+3 |
| | |||||
* | merge of 'c55938af0026b98297194116c1553d467104b41a' | lloyd | 2013-12-19 | 39 | -210/+639 |
|\ | | | | | | | and 'd0c532af92ea0940685dd0e99d2946329efbc917' | ||||
| * | Add AVX2 compiler flags for GCC and Clang. Tidy compiler option ordering. | lloyd | 2013-12-14 | 4 | -7/+15 |
| | | |||||
| * | Add cpuid support for new x86 feature flags like AVX2 and RDSEED | lloyd | 2013-12-14 | 2 | -86/+113 |
| | | |||||
| * | Make it possible to remove Boost dependency by disabling a few modules | lloyd | 2013-12-14 | 3 | -4/+8 |
| | | | | | | | | (though including X.509 and TLS). | ||||
| * | Use -Werror only when --maintainer-mode is set as warnings will sneak | lloyd | 2013-12-14 | 1 | -2/+3 |
| | | | | | | | | | | in on platforms/configs I don't test regularly, and that shouldn't break end-user builds. | ||||
| * | Add --write-hash-file to dist.py, producing a sha256sum file | lloyd | 2013-12-12 | 1 | -9/+35 |
| | | | | | | | | and clearsigning it, instead of signing the individual archives. | ||||
| * | Cleanups | lloyd | 2013-12-10 | 1 | -38/+42 |
| | | |||||
| * | Make SIMD_Scalar a template | lloyd | 2013-12-10 | 4 | -65/+73 |
| | | |||||
| * | s/default_nonce_size/default_nonce_length/ | lloyd | 2013-12-10 | 16 | -16/+22 |
| | | |||||
| * | Add Threefish-512 | lloyd | 2013-12-10 | 5 | -4/+216 |
| | | |||||
| * | Have default TLS policy reject SSLv3. Add TLS::Policy::acceptable_ciphersuite | lloyd | 2013-12-10 | 2 | -7/+18 |
| | | | | | | | | | | to allow either party to filter out specific ciphersuites they don't wish to support for whatever reason. | ||||
| * | Add simple config reader | lloyd | 2013-12-10 | 3 | -11/+131 |
| | | |||||
| * | Place BMW's expansion constant into a named variable as by C rules the | lloyd | 2013-12-09 | 1 | -2/+4 |
| | | | | | | | | | | bare constant is signed meaning signed overflow could occur. Reported by Rian Hunter. | ||||
* | | Refuse to make RSA/RW keys under 1024 bits | lloyd | 2013-12-06 | 2 | -2/+2 |
| | | |||||
* | | Fix OAEP key size check during encoding, and an array over-read when | lloyd | 2013-12-06 | 1 | -2/+2 |
|/ | | | | | decoding a message that was so large we decided it was invalid and truncated it. | ||||
* | Add key length multiple | lloyd | 2013-12-05 | 2 | -5/+8 |
| | |||||
* | Add SIV | lloyd | 2013-12-05 | 4 | -1/+316 |
| | |||||
* | Support the normal names for CCM in TLS policy config | lloyd | 2013-12-04 | 4 | -31/+30 |
| | |||||
* | First pass at automatic OCSP checks | lloyd | 2013-11-29 | 7 | -58/+110 |
| | |||||
* | Remove timeout from HTTP | lloyd | 2013-11-29 | 2 | -23/+16 |
| | |||||
* | Disable RC4 in TLS by default | lloyd | 2013-11-29 | 1 | -1/+1 |
| | |||||
* | Move OCSP to x509 subdir as they are quite entangled | lloyd | 2013-11-29 | 6 | -8/+1 |
| | |||||
* | Split chain creation and checking | lloyd | 2013-11-29 | 2 | -87/+104 |
| |