aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys
Commit message (Collapse)AuthorAgeFilesLines
...
| * 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
* Fix to pkg-config 0.1Steven Fackler2014-11-271-1/+1
|
* Hasher: static contract checking, context reuseGleb Kozyrev2014-11-261-0/+2
| | | | | | | | | | | | - Store EVP_MD_CTX in a separate struct. - Add with_context() constructor that uses an existing context. - Switch to EVP_Digest(Init|Final)_ex for efficient context reuse. - Make update() borrow &mut self. - Make finalize() consume self. Add finalize_reuse() that also returns the context which can be passed to from_context() constructor for reuse. These changes let the type system prevent illegal calls to update() and finalize().
* Bump to 0.1.1v0.1.1Steven Fackler2014-11-261-1/+1
|
* Sync is now part of the standard libraryAndor Uhlár2014-11-261-2/+1
|
* Bump to 0.1.0v0.1.0Steven Fackler2014-11-251-1/+1
|
* sys: add SSL_get_peer_certificate()Cody P Schafer2014-11-241-0/+1
|
* sys: add some methods for dealing with x509 certsCody P Schafer2014-11-241-0/+6
|
* sys (and bn): make CRYPTO_free() take a *mut c_void insead of a *const c_charCody P Schafer2014-11-241-1/+1
| | | | | | | | | CRYPTO_free() ends up being used for a variety of types of data, not just c_char. And it essentially takes full ownership of the type, making *mut appropriate. With this change it also more closely (exactly) matches the C defintion: void CRYPTO_free(void *ptr);
* Add more crate metadatav0.0.2Steven Fackler2014-11-221-1/+2
|
* Update stuff for upload to registrySteven Fackler2014-11-221-4/+8
|
* Runtime falloutValerii Hiora2014-11-211-1/+2
|
* Baseline server supportCody P Schafer2014-11-191-0/+1
| | | | | Allows calling SSL_accept() instead of SSL_connect() when creating an SslStream.
* Move AES XTS support to a featureSteven Fackler2014-11-162-0/+3
|
* Add XTS-AES modeCorey Ford2014-11-141-0/+2
|
* New build systemValerii Hiora2014-11-135-0/+600