| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | Remove Zero and One impls | Steven Fackler | 2014-11-17 | 1 | -20/+0 | |
| | | | ||||||
| | * | Fixed compilation errors related to namedspaced enums | James Hurst | 2014-11-17 | 9 | -116/+120 | |
| | | | ||||||
| | * | Impl Error for SslError | Steven Fackler | 2014-11-16 | 2 | -2/+23 | |
| | | | ||||||
| | * | Move AES XTS support to a feature | Steven Fackler | 2014-11-16 | 2 | -1/+8 | |
| | | | ||||||
| | * | Add XTS-AES mode | Corey Ford | 2014-11-14 | 1 | -0/+16 | |
| | | | ||||||
| | * | New build system | Valerii Hiora | 2014-11-13 | 2 | -484/+1 | |
| | | | ||||||
| | * | Merge pull request #89 from pyrho/aes-256-cbc-decrypt-test | Steven Fackler | 2014-11-10 | 1 | -0/+34 | |
| | |\ | | | | | | | Aes 256 cbc decrypt test | |||||
| | | * | Replaced vector of bytes with bytes string literal for expected output of ↵ | pyrho | 2014-10-28 | 1 | -7/+2 | |
| | | | | | | | | | | | | | AES_256_CBC deciphering unit test | |||||
| | | * | Merge remote-tracking branch 'upstream/master' into aes-256-cbc-decrypt-test | pyrho | 2014-10-28 | 3 | -14/+11 | |
| | | |\ | ||||||
| | | * | | AES 256 CBC unit test | pyrho | 2014-10-28 | 1 | -0/+39 | |
| | | | | | ||||||
| | * | | | Force linkage of LibreSSL when targeting NaCl OSs. | Richard Diamond | 2014-11-09 | 1 | -0/+3 | |
| | | | | | ||||||
| | * | | | Support PNaCl/NaCl. | Richard Diamond | 2014-11-09 | 1 | -14/+20 | |
| | | | | | ||||||
| | * | | | Hasher::write(): add basic test | Cody P Schafer | 2014-11-07 | 1 | -0/+13 | |
| | | | | | ||||||
| | * | | | crypto/hash: impl Writer for Hasher to allow use of Reader-Writer ↵ | Cody P Schafer | 2014-11-07 | 1 | -0/+8 | |
| | | | | | | | | | | | | | | | | | convenience functions | |||||
| | * | | | Update to work with change in TcpStream api | Cody P Schafer | 2014-11-07 | 1 | -13/+13 | |
| | | | | | ||||||
| | * | | | Clean up some warnings | Steven Fackler | 2014-10-31 | 1 | -2/+2 | |
| | | | | | ||||||
| | * | | | Merge pull request #90 from ebfe/fix-build | Steven Fackler | 2014-10-30 | 8 | -16/+16 | |
| | |\ \ \ | | |_|/ | |/| | | fail! -> panic! | |||||
| | | * | | fail! -> panic! | Michael Gehring | 2014-10-30 | 8 | -16/+16 | |
| | | | | | ||||||
| | * | | | Clean up some BN stuff | Steven Fackler | 2014-10-26 | 3 | -14/+11 | |
| | | |/ | |/| | ||||||
| | * | | Update doc location | Steven Fackler | 2014-10-26 | 1 | -1/+1 | |
| | |/ | ||||||
| | * | Cert loading from PEM & restructuring | Valerii Hiora | 2014-10-15 | 5 | -56/+100 | |
| | | | | | | | | | | | | | - Added cert loading - Extracted X509 tests | |||||
| | * | Cleaned up BigNum constructors | Valerii Hiora | 2014-10-14 | 1 | -25/+11 | |
| | | | ||||||
| | * | Correct init mutexes and locking function | Valerii Hiora | 2014-10-14 | 12 | -23/+46 | |
| | | | | | | | | | | | | | | | | | | | `libcrypto` uses locks quite intensively even without SSL. So they should be initialized before everything else to function properly in multi-threaded apps in which SSL operations are absent or delayed. Finishes #79 | |||||
| | * | ssl: allow setting cipher list | Cody P Schafer | 2014-10-13 | 2 | -0/+9 | |
| | | | ||||||
| | * | Refactor init and error handling code | Jared Roesch | 2014-10-11 | 3 | -21/+43 | |
| | | | | | | | | | | | Move common ffi initialization code to 'ffi::init()' and the initialization of error handling to a a shared location. | |||||
| | * | Prepare for s/static/const/ | Alex Crichton | 2014-10-09 | 1 | -88/+88 | |
| | | | ||||||
| | * | Merge pull request #75 from kinghajj/change-final-to-finalize | Steven Fackler | 2014-10-09 | 3 | -12/+12 | |
| | |\ | | | | | | | "final" is now a reserved word, so change occurrences to "finalize". | |||||
| | | * | "final" is now a reserved word, so change occurrences to "finalize". | Samuel Fredrickson | 2014-10-09 | 3 | -12/+12 | |
| | | | | ||||||
| | * | | BN_is_zero as a Rust function | Valerii Hiora | 2014-10-09 | 3 | -34/+16 | |
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Although wrapping was relatively easy it basically meant that we depend on C compilation which becomes nightmare as soon as multiple platforms are used. I’ve got a huge pain once iOS was involved with 3 device archs and 2 simulator arches to support, not mentioning different set of include and lib flags. So there are 2 different approaches: - continue this way, maintaining all compilation issues like like managing correct flags, providing correct paths and so on. This way our Makefile will grow extremely fast and will actually take more efforts to maintain. - doing it pure Rust way. In this case we provide all the macros expansions inside our wrappers and there should be no other way to access raw data other than through those wrappers. It might be fragile if OpenSSL internal data structures will ever change, but I think (or hope) it is pretty stable and wouldn’t change anytime soon. This PR eliminates `BN_is_zero` at all from public API. It’s functionality is implemented in `BigNum.is_zero` and should be enough. Additional notes: 1. I’ve moved BIGNUM into `bn` so it could access fields directly and keep it as an opaque structure for everyone else 2. I’ve kept empty Makefile as I hope to land `feature-matrix` branch soon and I don’t like merging deleted/added file conflicts. | |||||
| | * | X509 Generator sample | Valerii Hiora | 2014-10-08 | 2 | -1/+31 | |
| | | | | | | | | | Forcing static linking for lib wrapped as in other case doc tests fail to locate the static library | |||||
| | * | Minor doc fixes and feature mentions | Valerii Hiora | 2014-10-08 | 3 | -7/+26 | |
| | | | ||||||
| | * | Revert "Fix #65: failing test case" | Steven Fackler | 2014-10-07 | 2 | -2/+2 | |
| | | | ||||||
| | * | Merge pull request #66 from jroesch/fix-failing-test | Steven Fackler | 2014-10-07 | 2 | -2/+2 | |
| | |\ | | | | | | | Fix #65: failing test case | |||||
| | | * | Fix #65: failing test case | Jared Roesch | 2014-10-06 | 2 | -2/+2 | |
| | | | | ||||||
| | * | | Merge pull request #67 from vhbit/membio-eof | Steven Fackler | 2014-10-07 | 3 | -8/+50 | |
| | |\ \ | | | | | | | | | Fixed incorrect EOF handling in MemBio, added error description | |||||
| | | * | | Fixed incorrect EOF handling in MemBio, added error description | Valerii Hiora | 2014-10-07 | 3 | -8/+50 | |
| | | | | | | | | | | | | | | | | | Actually, EOF wasn't handled at all and it caused `mem_bio.read_to_end()` to fail. Which in turn failed all `write_pem` implementations. | |||||
| | * | | | Merge pull request #71 from vhbit/path-ization | Steven Fackler | 2014-10-07 | 2 | -7/+7 | |
| | |\ \ \ | | |/ / | |/| | | Using `Path`s instead of plain strings | |||||
| | | * | | Using `Path`s instead of plain strings | Valerii Hiora | 2014-10-07 | 2 | -7/+7 | |
| | | |/ | | | | | | | Refs #45 | |||||
| | * / | Potential fix for #68 | Valerii Hiora | 2014-10-07 | 2 | -3/+19 | |
| | |/ | ||||||
| | * | Better error handling in cert generation | Valerii Hiora | 2014-10-06 | 5 | -31/+103 | |
| | | | | | | | | | | | Now it should correctly free all resources in case of failure. | |||||
| | * | Ignore error string text | Steven Fackler | 2014-10-05 | 1 | -0/+1 | |
| | | | | | | | | | cc #65 | |||||
| | * | Load crypto error strings | Jared Roesch | 2014-10-05 | 2 | -2/+4 | |
| | | | ||||||
| | * | Fix error messages | Jared Roesch | 2014-10-05 | 1 | -3/+3 | |
| | | | ||||||
| | * | Address CR comments and add a test | Jared Roesch | 2014-10-05 | 1 | -9/+21 | |
| | | | ||||||
| | * | Make errors human readable | Jared Roesch | 2014-10-05 | 3 | -9/+17 | |
| | | | | | | | | | Change error messages from numeric codes to human readable strings. This makes debugging failures much easier. | |||||
| | * | Clean up warnings | Steven Fackler | 2014-10-04 | 2 | -2/+2 | |
| | | | ||||||
| | * | Changes made to support 0.12.0-dev ( October 2, 2014 ) | D.K | 2014-10-04 | 2 | -5/+3 | |
| | | | ||||||
| | * | Merge pull request #64 from reem/fix/big-num-is-zero | Steven Fackler | 2014-10-04 | 1 | -2/+7 | |
| | |\ | | | | | | | Add a dummy bn_is_zero C dependency to wrap BN_is_zero | |||||
| | | * | Add a dummy bn_is_zero C dependency to wrap BN_is_zero | Jonathan Reem | 2014-10-04 | 1 | -2/+7 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is necessary because on some architectures BN_is_zero is a CPP macro, so trying to link against it in an `extern "C"` block causes a linker error. This also introduces a build command to Cargo to compile the bn_is_zero wrapper. | |||||
| | * | | Merge pull request #58 from vhbit/verify-data | Steven Fackler | 2014-10-04 | 4 | -3/+133 | |
| | |\ \ | | |/ | |/| | User-provided data in verify | |||||