| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Use static linking on android, which simplifies deployment since loading ↵ | Glenn Watson | 2014-12-12 | 1 | -3/+8 |
| | | | | | application specific shared libraries on android requires Java code or other hacks. | ||||
| * | Clean up Copy impls a bit | Steven Fackler | 2014-12-11 | 1 | -4/+8 |
| | | |||||
| * | Update to nightly: explicit Copy trait | Valerii Hiora | 2014-12-11 | 1 | -0/+4 |
| | | |||||
| * | Add the openssl function prototype 'HMAC_CTX_cleanup'. | Ummon | 2014-12-10 | 1 | -0/+1 |
| | | |||||
| * | Merge pull request #113 from DiamondLovesYou/nacl-crosses | Steven Fackler | 2014-12-10 | 1 | -1/+1 |
| |\ | | | | | 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 Diamond | 2014-12-09 | 1 | -1/+1 |
| | | | | | | | | | | | | | to pkg-config. Also bump version minors for publishing. :) | ||||
| * | | Merge pull request #108 from DiamondLovesYou/nacl-crosses | Steven Fackler | 2014-12-09 | 2 | -0/+8 |
| |\| | | | | | 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 for | Richard Diamond | 2014-12-09 | 2 | -0/+8 |
| | | | | | | | | | | | use instead of whatever pkg-config says (which in the case of crosses, is almost certainly incorrect). This is for PNaCl. | ||||
| * | | Directly substitute $OPENSSL_PATH | Manish Goregaokar | 2014-12-05 | 1 | -6/+4 |
| | | | |||||
| * | | Allow passing in Android paths | Manish Goregaokar | 2014-12-03 | 1 | -0/+10 |
| |/ | |||||
| * | Drop execute bit on file | Steven Fackler | 2014-11-28 | 1 | -0/+0 |
| | | |||||
| * | Hasher: static contract checking, context reuse | Gleb Kozyrev | 2014-11-26 | 1 | -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(). | ||||
| * | Sync is now part of the standard library | Andor Uhlár | 2014-11-26 | 1 | -2/+1 |
| | | |||||
| * | sys: add SSL_get_peer_certificate() | Cody P Schafer | 2014-11-24 | 1 | -0/+1 |
| | | |||||
| * | sys: add some methods for dealing with x509 certs | Cody P Schafer | 2014-11-24 | 1 | -0/+6 |
| | | |||||
| * | sys (and bn): make CRYPTO_free() take a *mut c_void insead of a *const c_char | Cody P Schafer | 2014-11-24 | 1 | -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); | ||||
| * | Runtime fallout | Valerii Hiora | 2014-11-21 | 1 | -1/+2 |
| | | |||||
| * | Baseline server support | Cody P Schafer | 2014-11-19 | 1 | -0/+1 |
| | | | | | | Allows calling SSL_accept() instead of SSL_connect() when creating an SslStream. | ||||
| * | Move AES XTS support to a feature | Steven Fackler | 2014-11-16 | 1 | -0/+2 |
| | | |||||
| * | Add XTS-AES mode | Corey Ford | 2014-11-14 | 1 | -0/+2 |
| | | |||||
| * | New build system | Valerii Hiora | 2014-11-13 | 3 | -0/+560 |