| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Get nonblocking tests working on OSX/Windows | Alex Crichton | 2015-10-22 | 1 | -953/+0 |
| | | |||||
| * | Nonblocking streams support. | Jamie Turner | 2015-10-20 | 1 | -0/+132 |
| | | |||||
| * | Revert "Merge pull request #280 from ltratt/libressl_build" | Steven Fackler | 2015-10-14 | 1 | -0/+4 |
| | | | | | | This reverts commit aad933e5077b2c73e1f05d7314e442531a562bcf, reversing changes made to 60ee731408facdc8e3dfc000fdee2f1291fad664. | ||||
| * | Fix build on LibreSSL. | Laurence Tratt | 2015-10-03 | 1 | -4/+0 |
| | | | | | | | | | | LibreSSL has deprecated SSLv3_method, so this commit makes that a compile-time feature. It also removes a test referencing SSL_OP_CISCO_ANYCONNECT, as the LibreSSL header says it is amongst "Obsolete flags kept for compatibility. No sane code should use them." | ||||
| * | Enable testing on Windows via AppVeyor | Alex Crichton | 2015-09-22 | 1 | -55/+163 |
| | | | | | | | | This abolishes the test.sh script which spawns a bunch of `openssl` instances to instead run/manage the binary in-process (providing more isolation to boot). The tests have been updated accordingly and the `connected_socket` dependency was also dropped in favor of `net2` as it the former doesn't work on Windows. | ||||
| * | ssl/alpn: test mismatch between protocols resulting in None | Cody P Schafer | 2015-09-16 | 1 | -0/+43 |
| | | |||||
| * | openssl/ssl: fix some of the comment text where I missed replacing NPN with ALPN | Cody P Schafer | 2015-09-01 | 1 | -3/+3 |
| | | |||||
| * | Add get_state_string() | Manuel Schölling | 2015-08-17 | 1 | -0/+8 |
| | | |||||
| * | Fix probelms with DTLS when no packets are pending. | Manuel Schölling | 2015-07-18 | 1 | -1/+6 |
| | | | | | | | | | | | | When using DTLS you might run into the situation where no packets are pending, so SSL_read returns len=0. On a TLS connection this means that the connection was closed, but on DTLS it does not (a DTLS connection cannot be closed in the usual sense). This commit fixes a bug introduced by c8d23f3. Conflicts: openssl/src/ssl/mod.rs | ||||
| * | Fix build with alpn feature | Steven Fackler | 2015-06-29 | 1 | -2/+2 |
| | | |||||
| * | ssl: support ALPN | Cody P Schafer | 2015-06-29 | 1 | -0/+113 |
| | | | | | | | | | | | Heavily based on the existing NPN wrapping code. Naming of public functions is identical to the NPN ones with `s/npn/alpn/` applied to prevent devs from needing to remember 2 names (and to let my copy the npn tests and perform the subistution to generate the apln tests). It might make sense to (at some point) use macros or a trait to cut down the duplication. | ||||
| * | Make the direct constructors the defaults | Steven Fackler | 2015-06-28 | 1 | -25/+25 |
| | | |||||
| * | Rename new_client to connect and new_server to accept | Steven Fackler | 2015-06-28 | 1 | -27/+27 |
| | | |||||
| * | Implement direct IO support | Steven Fackler | 2015-06-28 | 1 | -1/+18 |
| | | |||||
| * | Reduce SslStream constructor duplication | Steven Fackler | 2015-06-27 | 1 | -23/+23 |
| | | |||||
| * | Add a test for connection negotiation failure | Steven Fackler | 2015-06-25 | 1 | -1/+10 |
| | | |||||
| * | Fix EOF handling in retry wrapper | Steven Fackler | 2015-06-25 | 1 | -1/+1 |
| | | |||||
| * | Test reading CN from test certificate | Joseph Glanville | 2015-05-18 | 1 | -2/+2 |
| | | |||||
| * | Add test for get_peer_certificate() | Joseph Glanville | 2015-05-16 | 1 | -0/+10 |
| | | |||||
| * | Add SslStream.pending() | Manuel Schölling | 2015-04-30 | 1 | -0/+24 |
| | | |||||
| * | Write through to underlying stream for every write call | Steven Fackler | 2015-04-30 | 1 | -3/+28 |
| | | | | | cc #208 | ||||
| * | Fix nightly build issues | Steven Fackler | 2015-04-15 | 1 | -1/+0 |
| | | |||||
| * | Fix non-dtls tests | Steven Fackler | 2015-04-08 | 1 | -4/+3 |
| | | |||||
| * | Fix dtls tests | Steven Fackler | 2015-04-08 | 1 | -8/+8 |
| | | | | | There's a reason static mut is unsafe... | ||||
| * | Adapt code for rust-1.0.0-beta | Manuel Schölling | 2015-04-06 | 1 | -9/+6 |
| | | |||||
| * | Fix rebase errors | Manuel Schölling | 2015-04-06 | 1 | -8/+1 |
| | | |||||
| * | Add ability to load private keys from files and use raw keys and ↵ | Manuel Schölling | 2015-04-06 | 1 | -1/+1 |
| | | | | | | | | | certificates for SslContext Conflicts: openssl/src/crypto/pkey.rs openssl/src/ssl/tests.rs | ||||
| * | Add ability to load private keys from files and use raw keys and ↵ | Manuel Schölling | 2015-04-06 | 1 | -2/+5 |
| | | | | | | | | certificates for SslContext Conflicts: openssl/src/ssl/tests.rs | ||||
| * | Debug halteproblem with tests | Manuel Schölling | 2015-04-06 | 1 | -2/+2 |
| | | |||||
| * | Move connected_socket to its own crate and fix SSL_CTX_set_read_ahead() | Manuel Schölling | 2015-04-06 | 1 | -5/+6 |
| | | |||||
| * | Adjust sin_len/sin6_len for non-linux platforms | Manuel Schölling | 2015-04-06 | 1 | -1/+1 |
| | | | | | | | Fixing errors for platforms you don't own is really annoying ;) Fixing errors | ||||
| * | Fix portability issue and typo | Manuel Schölling | 2015-04-06 | 1 | -5/+4 |
| | | |||||
| * | Fix travis test setup for DTLS | Manuel Schölling | 2015-04-06 | 1 | -8/+23 |
| | | |||||
| * | Add DTLSv1 and DTLSv1.2 support | Manuel Schölling | 2015-04-06 | 1 | -80/+135 |
| | | |||||
| * | Add connect() support for UDP sockets | Manuel Schölling | 2015-04-06 | 1 | -18/+52 |
| | | |||||
| * | Fix errors in tests (SslVerifyPeer -> SSL_VERIFY_PEER) | Manuel Schölling | 2015-04-03 | 1 | -16/+16 |
| | | |||||
| * | Return Result<(),SslError> instead of Option<SslError> | Manuel Schölling | 2015-04-03 | 1 | -11/+11 |
| | | |||||
| * | Add ability to load private keys from files and use raw keys and ↵ | Manuel Schölling | 2015-04-03 | 1 | -1/+24 |
| | | | | | certificates for SslContext | ||||
| * | Change SslVerifyMode to bitflags and add SSL_VERIFY_FAIL_IF_NO_PEER_CERT | Manuel Schölling | 2015-04-03 | 1 | -11/+12 |
| | | | | | | SslVerifyMode was changed to bitflags to allow for bitwise operations like (SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT). | ||||
| * | Fix npn feature | Steven Fackler | 2015-03-25 | 1 | -0/+6 |
| | | |||||
| * | Fix deprecation warnings | Steven Fackler | 2015-03-25 | 1 | -4/+3 |
| | | |||||
| * | openssl: Add tests for server-side NPN | Marko Lalic | 2015-03-23 | 1 | -0/+41 |
| | | |||||
| * | openssl: Add tests for client-side NPN | Marko Lalic | 2015-03-23 | 1 | -2/+74 |
| | | | | | | An additional `openssl` process is spun up before the tests are ran. This process has NPN enabled with some default protocols. | ||||
| * | Merge pull request #172 from reaperhulk/add-ssl-ctx-set-get-options | Steven Fackler | 2015-03-07 | 1 | -0/+25 |
| |\ | | | | | 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 | -4/+15 |
| | | | |||||
| | * | add support for SSL_CTX_set_options and SSL_CTX_get_options | Paul Kehrer | 2015-02-22 | 1 | -0/+14 |
| | | | | | | | | | fixes #168 | ||||
| * | | Convert to new IO. | Steven Fackler | 2015-02-24 | 1 | -16/+6 |
| |/ | |||||
| * | Update depreciated code | Kevin Butler | 2015-02-20 | 1 | -2/+2 |
| | | |||||
| * | Move docs to this repo and auto build | Steven Fackler | 2015-02-07 | 1 | -0/+207 |