| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Release v0.3.2v0.3.2 | Steven Fackler | 2015-02-08 | 2 | -4/+4 | |
| | | ||||||
| * | Fix builds against 0.9.x OpenSSL | Steven Fackler | 2015-02-08 | 6 | -51/+103 | |
| | | | | | Namely builds on OSX | |||||
| * | Merge pull request #156 from s-panferov/patch-1 | Steven Fackler | 2015-02-08 | 1 | -0/+11 | |
| |\ | | | | | Add info about OS X to the README | |||||
| | * | Add info about OS X to the README | Stanislav Panferov | 2015-02-07 | 1 | -0/+11 | |
| | | | ||||||
| * | | Fix test | Steven Fackler | 2015-02-07 | 1 | -1/+1 | |
| | | | ||||||
| * | | Fix stuff | Steven Fackler | 2015-02-07 | 4 | -2/+2 | |
| | | | ||||||
| * | | Fix travis.yml | Steven Fackler | 2015-02-07 | 1 | -1/+1 | |
| | | | ||||||
| * | | Build fixes | Steven Fackler | 2015-02-07 | 5 | -22/+36 | |
| | | | ||||||
| * | | Move docs to this repo and auto build | Steven Fackler | 2015-02-07 | 28 | -12/+45 | |
| |/ | ||||||
| * | Fix deprecation warnings in openssl-sys | Steven Fackler | 2015-02-05 | 3 | -12/+13 | |
| | | ||||||
| * | Release v0.3.1v0.3.1 | Steven Fackler | 2015-02-03 | 2 | -3/+3 | |
| | | ||||||
| * | Move openssl-sys build.rs | Steven Fackler | 2015-02-03 | 2 | -1/+1 | |
| | | ||||||
| * | Merge pull request #153 from mbrubeck/android | Steven Fackler | 2015-02-03 | 1 | -5/+6 | |
| |\ | | | | | Don't bail out of openssl-sys build config when targeting Android | |||||
| | * | Don't bail out when targeting Android | Matt Brubeck | 2015-02-03 | 1 | -5/+6 | |
| | | | ||||||
| * | | Release v0.3.0v0.3.0 | Steven Fackler | 2015-02-03 | 2 | -3/+3 | |
| | | | ||||||
| * | | Merge pull request #152 from gkoz/std_stability | Steven Fackler | 2015-02-03 | 1 | -1/+1 | |
| |\ \ | | | | | | | Chase std API stability changes | |||||
| | * | | Chase std API stability changes | Gleb Kozyrev | 2015-02-03 | 1 | -1/+1 | |
| |/ / | ||||||
| * | | Merge pull request #150 from gkoz/show_debug | Steven Fackler | 2015-02-01 | 1 | -2/+2 | |
| |\ \ | | | | | | | Derive Debug instead of deprecated Show | |||||
| | * | | Derive Debug instead of deprecated Show | Gleb Kozyrev | 2015-02-01 | 1 | -2/+2 | |
| | | | | ||||||
| * | | | Merge pull request #151 from gkoz/std_stability_warns | Steven Fackler | 2015-02-01 | 2 | -2/+3 | |
| |\ \ \ | |/ / |/| | | Declare the use of unstable libstd APIs | |||||
| | * | | Declare the use of unstable libstd APIs | Gleb Kozyrev | 2015-02-01 | 2 | -2/+3 | |
| |/ / | ||||||
| * | | Fix for stability changes | Steven Fackler | 2015-01-29 | 2 | -3/+5 | |
| | | | ||||||
| * | | Merge pull request #149 from gkoz/hashers_double_fin | Steven Fackler | 2015-01-29 | 2 | -2/+2 | |
| |\ \ | | | | | | | Avoid duplicate calls to *_Final when dropping Hasher and HMAC | |||||
| | * | | Avoid duplicate calls to *_Final when dropping Hasher and HMAC | Gleb Kozyrev | 2015-01-29 | 2 | -2/+2 | |
| |/ / | | | | | | | An assertion triggered in finalize() would lead to drop() erroneously redoing the finalization. Set the state to Finalized unconditionally to prevent this. | |||||
| * | | Merge pull request #141 from gkoz/borrow_mut | Steven Fackler | 2015-01-28 | 7 | -189/+516 | |
| |\ \ | | | | | | | Improve Hasher and HMAC APIs | |||||
| | * | | Rename crypto::hash::HashType -> Type | Gleb Kozyrev | 2015-01-28 | 6 | -47/+49 | |
| | | | | | | | | | | | | | | | | s/HashType/Type/ to follow the current Rust style. Import Type as HashType in modules where the name might be ambiguous. [breaking change] | |||||
| | * | | Change Hasher and HMAC APIs closer to std::hash model | Gleb Kozyrev | 2015-01-28 | 4 | -176/+501 | |
| |/ / | | | | | | | | | | | | | | | | | | | | | - Implement Clone and std::io::Writer. - Reduce the API to write() and finish(). Contrary to std::hash, finish() resets the hasher immediately. - Add hmac::hmac() convenience fn. - Replace hash::evpmd() with HashType methods. - Add assertions as a crude check for failed calls into openssl. - Add examples and some tests. [breaking-change] | |||||
| * | | Release v0.2.18v0.2.18 | Steven Fackler | 2015-01-28 | 2 | -3/+3 | |
| | | | ||||||
| * | | Fix for IO changes | Steven Fackler | 2015-01-28 | 9 | -33/+33 | |
| | | | ||||||
| * | | Release v0.2.17v0.2.17 | Steven Fackler | 2015-01-23 | 2 | -3/+3 | |
| | | | ||||||
| * | | Fix for upstream changes | Steven Fackler | 2015-01-23 | 3 | -10/+17 | |
| | | | ||||||
| * | | Merge pull request #145 from gkoz/ffi_fixes | Steven Fackler | 2015-01-21 | 5 | -28/+29 | |
| |\ \ | |/ |/| | Bring ffi definitions closer to the originals | |||||
| | * | Bring ffi definitions closer to the originals | Gleb Kozyrev | 2015-01-21 | 5 | -28/+29 | |
| |/ | | | | | Add missing return types and fix imprecise type translations. Repair the fallout in the openssl crate. | |||||
| * | Release v0.2.16v0.2.16 | Steven Fackler | 2015-01-16 | 2 | -3/+3 | |
| | | ||||||
| * | Drop execute bits on source files | Steven Fackler | 2015-01-16 | 2 | -0/+0 | |
| | | ||||||
| * | Merge pull request #142 from akiss77/pr-u8-c_char | Steven Fackler | 2015-01-12 | 1 | -2/+2 | |
| |\ | | | | | Fix ffi: `BN_hex2bn` and `BN_dec2bn` shall take `*const c_char` as parameter | |||||
| | * | Fix ffi: `BN_hex2bn` and `BN_dec2bn` shall take `*const c_char` as parameter | Akos Kiss | 2015-01-12 | 1 | -2/+2 | |
| |/ | | | | `c_char` is not `i8` on all platforms | |||||
| * | Add Show impls | Steven Fackler | 2015-01-09 | 1 | -3/+24 | |
| | | ||||||
| * | Fix doctestv0.2.15 | Steven Fackler | 2015-01-09 | 1 | -0/+3 | |
| | | ||||||
| * | Merge pull request #140 from alexcrichton/update | Steven Fackler | 2015-01-09 | 14 | -98/+102 | |
| |\ | | | | | Update to rust master | |||||
| | * | Update to rust master | Alex Crichton | 2015-01-09 | 14 | -98/+102 | |
| |/ | ||||||
| * | Merge pull request #139 from vhbit/up-masterv0.2.14 | Steven Fackler | 2015-01-07 | 8 | -62/+70 | |
| |\ | | | | | Handle recent breaking changes | |||||
| | * | Handle recent breaking changes | Valerii Hiora | 2015-01-07 | 8 | -62/+70 | |
| |/ | | | | | | | - macro reform - split of Show and String in formatter - CString reform - feature changes | |||||
| * | Release v0.2.13v0.2.13 | Steven Fackler | 2015-01-06 | 2 | -3/+3 | |
| | | ||||||
| * | Merge pull request #138 from retep998/master | Steven Fackler | 2015-01-06 | 1 | -2/+2 | |
| |\ | | | | | Update rust | |||||
| | * | Update rust | Peter Atashian | 2015-01-06 | 1 | -2/+2 | |
| |/ | | | | Signed-off-by: Peter Atashian <[email protected]> | |||||
| * | Merge pull request #137 from cjcole/master | Steven Fackler | 2015-01-06 | 2 | -2/+96 | |
| |\ | | | | | Added BN_[add,div,mul,sub,mod]_word and conversions to and from dec and hex strings. | |||||
| | * | Merge remote-tracking branch 'upstream/master' | Chris Cole | 2015-01-05 | 4 | -12/+28 | |
| | |\ | |/ |/| | ||||||
| * | | Release v0.2.12v0.2.12 | Steven Fackler | 2015-01-04 | 2 | -3/+3 | |
| | | | ||||||
| * | | Fix for upstream changes | Steven Fackler | 2015-01-04 | 2 | -9/+25 | |
| | | | ||||||