| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Fix doc root | Steven Fackler | 2015-05-13 | 1 | -1/+1 | |
| | | ||||||
| * | Merge pull request #210 from manuels/pending | Steven Fackler | 2015-05-05 | 1 | -0/+1 | |
| |\ | | | | | Add SslStream.pending() | |||||
| | * | Add SslStream.pending() | Manuel Schölling | 2015-04-30 | 1 | -0/+1 | |
| | | | ||||||
| * | | Merge pull request #201 from manuels/pkey_cmp | Steven Fackler | 2015-05-04 | 1 | -0/+1 | |
| |\ \ | |/ |/| | Add comparison for PKeys | |||||
| | * | Add comparison for PKeys | Manuel Schölling | 2015-04-16 | 1 | -0/+1 | |
| | | | ||||||
| * | | 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 | 1 | -1/+2 | |
| | | ||||||
| * | 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 | 1 | -1/+0 | |
| | | ||||||
| * | 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 | 1 | -5/+5 | |
| | | | | | | | | | | | * 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 | |
| | | ||||||
| * | Fix builds against 0.9.x OpenSSL | Steven Fackler | 2015-02-08 | 1 | -0/+8 | |
| | | | | | 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 | 1 | -1/+1 | |
| | | ||||||
| * | Declare the use of unstable libstd APIs | Gleb Kozyrev | 2015-02-01 | 1 | -1/+2 | |
| | | ||||||
| * | 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] | |||||
| * | 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 | 1 | -6/+6 | |
| | | ||||||
| * | 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 | 1 | -6/+16 | |
| |\| | | | | | | | | | 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. | |||||
| | * | 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 | |
| | | | ||||||