aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys
Commit message (Collapse)AuthorAgeFilesLines
* 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.
| | * Add a feature to openssl-sys to cause it to build a local copy of libressl forRichard Diamond2014-12-093-0/+17
| | | | | | | | | | | | | | | use instead of whatever pkg-config says (which in the case of crosses, is almost certainly incorrect). This is for PNaCl.
| * | Directly substitute $OPENSSL_PATHManish Goregaokar2014-12-051-6/+4
| | |
| * | Allow passing in Android pathsManish Goregaokar2014-12-031-0/+10
| |/
| * Release v0.2.2v0.2.2Steven Fackler2014-12-011-1/+1
| |
* | Added mod_word.Chris Cole2014-12-101-0/+1
|/
* Release 0.2.1v0.2.1Steven Fackler2014-11-281-1/+1
|
* Drop execute bit on fileSteven Fackler2014-11-281-0/+0
|
* Bump to 0.2v0.2.0Steven Fackler2014-11-271-2/+1
| | | | | | | | Also removed the PNaCl support. It hasn't worked anyway in a while since the pnacl-libressl-sys library doesn't have any of the FFI bindings and makes openssl's Cargo.toml a mess. This is a minor version bump since Hasher's API changed