aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys
Commit message (Collapse)AuthorAgeFilesLines
* Release v0.3.2v0.3.2Steven Fackler2015-02-081-1/+1
|
* Fix builds against 0.9.x OpenSSLSteven Fackler2015-02-084-31/+95
| | | | Namely builds on OSX
* Move docs to this repo and auto buildSteven Fackler2015-02-072-0/+2
|
* Fix deprecation warnings in openssl-sysSteven Fackler2015-02-053-12/+13
|
* Release v0.3.1v0.3.1Steven Fackler2015-02-031-1/+1
|
* Move openssl-sys build.rsSteven Fackler2015-02-032-1/+1
|
* Merge pull request #153 from mbrubeck/androidSteven Fackler2015-02-031-5/+6
|\ | | | | Don't bail out of openssl-sys build config when targeting Android
| * Don't bail out when targeting AndroidMatt Brubeck2015-02-031-5/+6
| |
* | Release v0.3.0v0.3.0Steven Fackler2015-02-031-1/+1
| |
* | Declare the use of unstable libstd APIsGleb Kozyrev2015-02-012-2/+3
| |
* | Change Hasher and HMAC APIs closer to std::hash modelGleb Kozyrev2015-01-281-0/+2
| | | | | | | | | | | | | | | | | | | | | | - 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-281-1/+1
| |
* | Fix for IO changesSteven Fackler2015-01-281-1/+1
| |
* | Release v0.2.17v0.2.17Steven Fackler2015-01-231-1/+1
| |
* | Bring ffi definitions closer to the originalsGleb Kozyrev2015-01-211-17/+17
|/ | | | | Add missing return types and fix imprecise type translations. Repair the fallout in the openssl crate.
* Release v0.2.16v0.2.16Steven Fackler2015-01-161-1/+1
|
* 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
* Update to rust masterAlex Crichton2015-01-092-6/+8
|
* Release v0.2.13v0.2.13Steven Fackler2015-01-061-1/+1
|
* Merge remote-tracking branch 'upstream/master'Chris Cole2015-01-051-1/+1
|\
| * Release v0.2.12v0.2.12Steven Fackler2015-01-041-1/+1
| |
* | Merge remote-tracking branch 'upstream/master'Chris Cole2015-01-032-4/+5
|\|
| * Release v0.2.11v0.2.11Steven Fackler2015-01-031-1/+1
| |
| * Fix deprecation warningsSteven Fackler2015-01-031-3/+4
| |
* | Added BN_add_word, BN_sub_word, BN_mul_word, BN_div_word.Chris Cole2015-01-021-10/+7
| | | | | | | | Removed BIGNUM_PTR struct.
* | Merge remote-tracking branch 'upstream/master'Chris Cole2015-01-022-7/+7
|\|
| * 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.
| * | Array syntax falloutValerii Hiora2015-01-021-1/+1
| |/
| * Release v0.2.10v0.2.10Steven Fackler2014-12-311-1/+1
| |
| * Change to use updated Mutex API in latest Rust master.Samuel Fredrickson2014-12-301-4/+4
| |
| * Release v0.2.9v0.2.9Steven Fackler2014-12-291-1/+1
| |
* | Added Copy impl.Chris Cole2014-12-231-0/+2
| |
* | Merge remote-tracking branch 'upstream/master'Chris Cole2014-12-233-10/+25
|\| | | | | | | | | Conflicts: openssl-sys/src/lib.rs
| * Release v0.2.8v0.2.8Steven Fackler2014-12-231-1/+1
| |
| * Release v0.2.7v0.2.7Steven Fackler2014-12-211-1/+1
| |
| * Replaced now removed NativeMutex with StaticMutex, and fixed NegAaron Weiss2014-12-211-6/+8
| | | | | | | | implementation for BigNum.
| * Release v0.2.6v0.2.6Steven Fackler2014-12-191-1/+1
| |
| * Merge pull request #119 from glennw/android-static-linkingSteven Fackler2014-12-161-3/+8
| |\ | | | | | | Use static linking on android, which simplifies deployment since loading...
| | * Use static linking on android, which simplifies deployment since loading ↵Glenn Watson2014-12-121-3/+8
| | | | | | | | | | | | application specific shared libraries on android requires Java code or other hacks.
| * | Release v0.2.5v0.2.5Steven Fackler2014-12-161-1/+1
| | |
| * | Release v0.2.4v0.2.4Steven Fackler2014-12-151-1/+1
| |/
| * Clean up Copy impls a bitSteven Fackler2014-12-111-4/+8
| |
| * Update to nightly: explicit Copy traitValerii Hiora2014-12-111-0/+4
| |
* | Added BigNum::{from_dec_str,from_hex_str}, BN_dec2bn, and BN_hex2bn.Chris Cole2014-12-141-1/+11
| |
* | Merge remote-tracking branch 'upstream/master'Chris Cole2014-12-103-2/+28
|\|
| * Add the openssl function prototype 'HMAC_CTX_cleanup'.Ummon2014-12-101-0/+1
| |
| * Merge pull request #113 from DiamondLovesYou/nacl-crossesSteven Fackler2014-12-102-3/+3
| |\ | | | | | | Now that pkg-config 0.1.1 has been published, delegate bailout detection to pkg-config.
| | * Now that pkg-config 0.1.1 has been published, delegate to bailout detection ↵Richard Diamond2014-12-092-3/+3
| | | | | | | | | | | | | | | | | | to pkg-config. Also bump version minors for publishing. :)
| * | Merge pull request #108 from DiamondLovesYou/nacl-crossesSteven Fackler2014-12-093-0/+17
| |\| | | | | | | Use locally built libreSSL if targeting NaCl instead of the host's versions.