| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fixes for Native Client. | Richard Diamond | 2015-04-18 | 1 | -0/+3 |
| | | |||||
| * | Add X509::public_key() | Manuel Schölling | 2015-04-15 | 1 | -0/+1 |
| | | |||||
| * | Fix rebase errors | Manuel Schölling | 2015-04-06 | 1 | -1/+0 |
| | | |||||
| * | Move connected_socket to its own crate and fix SSL_CTX_set_read_ahead() | Manuel Schölling | 2015-04-06 | 1 | -0/+3 |
| | | |||||
| * | Add DTLSv1 and DTLSv1.2 support | Manuel Schölling | 2015-04-06 | 1 | -0/+4 |
| | | |||||
| * | Add connect() support for UDP sockets | Manuel Schölling | 2015-04-06 | 1 | -0/+2 |
| | | |||||
| * | Add SslContext::add_extra_chain_cert() | Manuel Schölling | 2015-04-03 | 1 | -1/+9 |
| | | |||||
| * | Add ability to load private keys from files and use raw keys and ↵ | Manuel Schölling | 2015-04-03 | 1 | -0/+6 |
| | | | | | certificates for SslContext | ||||
| * | Change SslVerifyMode to bitflags and add SSL_VERIFY_FAIL_IF_NO_PEER_CERT | Manuel Schölling | 2015-04-03 | 1 | -0/+1 |
| | | | | | | SslVerifyMode was changed to bitflags to allow for bitwise operations like (SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT). | ||||
| * | Fixup for beta | Alex Crichton | 2015-04-02 | 1 | -0/+12 |
| | | | | | Add derive(Clone) and don't negate unsigned numbers | ||||
| * | rustup: changes to io::Error | Sean McArthur | 2015-04-02 | 1 | -1/+0 |
| | | |||||
| * | Update to rust master | Alex Crichton | 2015-03-25 | 2 | -4/+5 |
| | | |||||
| * | openssl-sys: Add TLS extension constants | Marko Lalic | 2015-03-23 | 1 | -0/+5 |
| | | |||||
| * | openssl-sys: Add NPN functions and constants | Marko Lalic | 2015-03-23 | 1 | -0/+29 |
| | | |||||
| * | Remove usage of unstable features in openssl-sys | Alex Crichton | 2015-03-16 | 2 | -4/+3 |
| | | |||||
| * | Fix warnings | Steven Fackler | 2015-03-10 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #172 from reaperhulk/add-ssl-ctx-set-get-options | Steven Fackler | 2015-03-07 | 1 | -0/+17 |
| |\ | | | | | add support for SSL_CTX_set_options and SSL_CTX_get_options | ||||
| | * | add support for SSL_CTX_clear_options and use bitflags | Paul Kehrer | 2015-02-23 | 1 | -0/+5 |
| | | | |||||
| | * | add support for SSL_CTX_set_options and SSL_CTX_get_options | Paul Kehrer | 2015-02-22 | 1 | -0/+12 |
| | | | | | | | | | fixes #168 | ||||
| * | | Cut down on unstable features in openssl-sys | Alex Crichton | 2015-03-04 | 2 | -14/+15 |
| | | | | | | | | | | | * Move from `old_path` to `path` (leveraging the `fs` feature as well) * Move from `StaticMutex` to `Mutex<()>` as they're dynamically initialized | ||||
| * | | Switch to cargo liblibc | Steven Fackler | 2015-02-24 | 1 | -1/+1 |
| |/ | |||||
| * | Fix warnings | Steven Fackler | 2015-02-19 | 1 | -1/+1 |
| | | |||||
| * | Fix debuginfo ICE for now | Alex Crichton | 2015-02-19 | 1 | -1/+4 |
| | | |||||
| * | Remove deprecated functions from openssl-sys | Steven Fackler | 2015-02-13 | 1 | -6/+0 |
| | | |||||
| * | Ask openssl what version it is | Steven Fackler | 2015-02-13 | 1 | -3/+3 |
| | | |||||
| * | rustup to current master | Robin Gloster | 2015-02-12 | 1 | -4/+4 |
| | | |||||
| * | Fix builds against 0.9.x OpenSSL | Steven Fackler | 2015-02-08 | 2 | -0/+57 |
| | | | | | Namely builds on OSX | ||||
| * | Move docs to this repo and auto build | Steven Fackler | 2015-02-07 | 1 | -0/+1 |
| | | |||||
| * | Fix deprecation warnings in openssl-sys | Steven Fackler | 2015-02-05 | 2 | -6/+6 |
| | | |||||
| * | Move openssl-sys build.rs | Steven Fackler | 2015-02-03 | 1 | -43/+0 |
| | | |||||
| * | Merge pull request #153 from mbrubeck/android | Steven Fackler | 2015-02-03 | 1 | -5/+6 |
| |\ | | | | | Don't bail out of openssl-sys build config when targeting Android | ||||
| | * | Don't bail out when targeting Android | Matt Brubeck | 2015-02-03 | 1 | -5/+6 |
| | | | |||||
| * | | Declare the use of unstable libstd APIs | Gleb Kozyrev | 2015-02-01 | 2 | -2/+3 |
| | | | |||||
| * | | Change Hasher and HMAC APIs closer to std::hash model | Gleb Kozyrev | 2015-01-28 | 1 | -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] | ||||
| * | | Fix for IO changes | Steven Fackler | 2015-01-28 | 1 | -1/+1 |
| | | | |||||
| * | | Bring ffi definitions closer to the originals | Gleb Kozyrev | 2015-01-21 | 1 | -17/+17 |
| |/ | | | | | Add missing return types and fix imprecise type translations. Repair the fallout in the openssl crate. | ||||
| * | Fix ffi: `BN_hex2bn` and `BN_dec2bn` shall take `*const c_char` as parameter | Akos Kiss | 2015-01-12 | 1 | -2/+2 |
| | | | | | `c_char` is not `i8` on all platforms | ||||
| * | Update to rust master | Alex Crichton | 2015-01-09 | 2 | -6/+8 |
| | | |||||
| * | Merge remote-tracking branch 'upstream/master' | Chris Cole | 2015-01-03 | 1 | -3/+4 |
| |\ | |||||
| | * | Fix deprecation warnings | Steven Fackler | 2015-01-03 | 1 | -3/+4 |
| | | | |||||
| * | | Added BN_add_word, BN_sub_word, BN_mul_word, BN_div_word. | Chris Cole | 2015-01-02 | 1 | -10/+7 |
| | | | | | | | | | Removed BIGNUM_PTR struct. | ||||
| * | | Merge remote-tracking branch 'upstream/master' | Chris Cole | 2015-01-02 | 1 | -6/+6 |
| |\| | |||||
| | * | Merge pull request #134 from DiamondLovesYou/master | Steven Fackler | 2015-01-02 | 1 | -1/+1 |
| | |\ | | | | | | | OpenSSL-sys: Cfg off target_os instead off feature. | ||||
| | | * | OpenSSL-sys: Cfg off target_os instead off feature. | Richard Diamond | 2015-01-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | It seems cargo doesn't provide --cfg entries for dep crates after all. | ||||
| | * | | Array syntax fallout | Valerii Hiora | 2015-01-02 | 1 | -1/+1 |
| | |/ | |||||
| | * | Change to use updated Mutex API in latest Rust master. | Samuel Fredrickson | 2014-12-30 | 1 | -4/+4 |
| | | | |||||
| * | | Added Copy impl. | Chris Cole | 2014-12-23 | 1 | -0/+2 |
| | | | |||||
| * | | Merge remote-tracking branch 'upstream/master' | Chris Cole | 2014-12-23 | 2 | -9/+24 |
| |\| | | | | | | | | | Conflicts: openssl-sys/src/lib.rs | ||||
| | * | Replaced now removed NativeMutex with StaticMutex, and fixed Neg | Aaron Weiss | 2014-12-21 | 1 | -6/+8 |
| | | | | | | | | | implementation for BigNum. | ||||
| | * | 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. | ||||