aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Release v0.3.0v0.3.0Steven Fackler2015-02-032-3/+3
|
* Merge pull request #152 from gkoz/std_stabilitySteven Fackler2015-02-031-1/+1
|\ | | | | Chase std API stability changes
| * Chase std API stability changesGleb Kozyrev2015-02-031-1/+1
|/
* Merge pull request #150 from gkoz/show_debugSteven Fackler2015-02-011-2/+2
|\ | | | | Derive Debug instead of deprecated Show
| * Derive Debug instead of deprecated ShowGleb Kozyrev2015-02-011-2/+2
| |
* | Merge pull request #151 from gkoz/std_stability_warnsSteven Fackler2015-02-012-2/+3
|\ \ | |/ |/| Declare the use of unstable libstd APIs
| * Declare the use of unstable libstd APIsGleb Kozyrev2015-02-012-2/+3
|/
* Fix for stability changesSteven Fackler2015-01-292-3/+5
|
* Merge pull request #149 from gkoz/hashers_double_finSteven Fackler2015-01-292-2/+2
|\ | | | | Avoid duplicate calls to *_Final when dropping Hasher and HMAC
| * Avoid duplicate calls to *_Final when dropping Hasher and HMACGleb Kozyrev2015-01-292-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_mutSteven Fackler2015-01-287-189/+516
|\ | | | | Improve Hasher and HMAC APIs
| * Rename crypto::hash::HashType -> TypeGleb Kozyrev2015-01-286-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 modelGleb Kozyrev2015-01-284-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.18Steven Fackler2015-01-282-3/+3
|
* Fix for IO changesSteven Fackler2015-01-289-33/+33
|
* Release v0.2.17v0.2.17Steven Fackler2015-01-232-3/+3
|
* Fix for upstream changesSteven Fackler2015-01-233-10/+17
|
* Merge pull request #145 from gkoz/ffi_fixesSteven Fackler2015-01-215-28/+29
|\ | | | | Bring ffi definitions closer to the originals
| * Bring ffi definitions closer to the originalsGleb Kozyrev2015-01-215-28/+29
|/ | | | | Add missing return types and fix imprecise type translations. Repair the fallout in the openssl crate.
* Release v0.2.16v0.2.16Steven Fackler2015-01-162-3/+3
|
* Drop execute bits on source filesSteven Fackler2015-01-162-0/+0
|
* Merge pull request #142 from akiss77/pr-u8-c_charSteven Fackler2015-01-121-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 parameterAkos Kiss2015-01-121-2/+2
|/ | | | `c_char` is not `i8` on all platforms
* Add Show implsSteven Fackler2015-01-091-3/+24
|
* Fix doctestv0.2.15Steven Fackler2015-01-091-0/+3
|
* Merge pull request #140 from alexcrichton/updateSteven Fackler2015-01-0914-98/+102
|\ | | | | Update to rust master
| * Update to rust masterAlex Crichton2015-01-0914-98/+102
|/
* Merge pull request #139 from vhbit/up-masterv0.2.14Steven Fackler2015-01-078-62/+70
|\ | | | | Handle recent breaking changes
| * Handle recent breaking changesValerii Hiora2015-01-078-62/+70
|/ | | | | | | - macro reform - split of Show and String in formatter - CString reform - feature changes
* Release v0.2.13v0.2.13Steven Fackler2015-01-062-3/+3
|
* Merge pull request #138 from retep998/masterSteven Fackler2015-01-061-2/+2
|\ | | | | Update rust
| * Update rustPeter Atashian2015-01-061-2/+2
|/ | | | Signed-off-by: Peter Atashian <[email protected]>
* Merge pull request #137 from cjcole/masterSteven Fackler2015-01-062-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 Cole2015-01-054-12/+28
| |\ | |/ |/|
* | Release v0.2.12v0.2.12Steven Fackler2015-01-042-3/+3
| |
* | Fix for upstream changesSteven Fackler2015-01-042-9/+25
| |
| * Added use of ToCStr trait.Chris Cole2015-01-031-1/+1
| |
| * Merge remote-tracking branch 'upstream/master'Chris Cole2015-01-0311-63/+76
| |\ | |/ |/|
* | Release v0.2.11v0.2.11Steven Fackler2015-01-032-3/+3
| |
* | Fix deprecation warningsSteven Fackler2015-01-037-31/+38
| |
* | Merge pull request #136 from vhbit/up-masterSteven Fackler2015-01-038-29/+35
|\ \ | | | | | | Updated to master:
| * | Updated to master:Valerii Hiora2015-01-038-29/+35
|/ / | | | | | | | | | | - library stab issues - deriving -> derive - {mod} -> {self}
| * Merge branch 'master' of https://github.com/cjcole/rust-opensslChris Cole2015-01-032-16/+62
| |\
| | * Added BN_add_word, BN_sub_word, BN_mul_word, BN_div_word.Chris Cole2015-01-022-16/+62
| | | | | | | | | | | | Removed BIGNUM_PTR struct.
| | * Merge remote-tracking branch 'upstream/master'Chris Cole2015-01-025-40/+40
| | |\ | |_|/ |/| |
| * | Merge remote-tracking branch 'upstream/master'Chris Cole2015-01-035-40/+40
| |\ \ | |/ / |/| / | |/
* | Merge pull request #134 from DiamondLovesYou/masterSteven Fackler2015-01-021-1/+1
|\ \ | | | | | | OpenSSL-sys: Cfg off target_os instead off feature.
| * | OpenSSL-sys: Cfg off target_os instead off feature.Richard Diamond2015-01-021-1/+1
| | | | | | | | | | | | It seems cargo doesn't provide --cfg entries for dep crates after all.
* | | Merge pull request #135 from vhbit/array-syntaxSteven Fackler2015-01-022-4/+4
|\ \ \ | |/ / |/| | Array syntax fallout
| * | Array syntax falloutValerii Hiora2015-01-022-4/+4
|/ /