| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix build with openssl 1.1.1 and no-psk | Stefan Tatschner | 2018-06-21 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I used this as build flags for openssl 1.1.1: ``` /usr/bin/perl ./Configure linux-x86_64 no-shared no-zlib no-psk no-srp no-weak-ssl-ciphers no-idea ``` rust-openssl crashed with this error: ``` Compiling openssl v0.10.10 error[E0433]: failed to resolve. Use of undeclared type or module `CStr` --> /home/stefan/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.10/src/ssl/callbacks.rs:386:16 | 386 | let line = CStr::from_ptr(line).to_bytes(); | ^^^^ Use of undeclared type or module `CStr` error[E0412]: cannot find type `c_char` in this scope --> /home/stefan/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-0.10.10/src/ssl/callbacks.rs:377:75 | 377 | pub unsafe extern "C" fn raw_keylog<F>(ssl: *const ffi::SSL, line: *const c_char) | ^^^^^^ did you mean `c_uchar`? help: possible candidates are found in other modules, you can import them into scope | 1 | use libc::c_char; | 1 | use std::os::raw::c_char; | error: aborting due to 2 previous errors Some errors occurred: E0412, E0433. For more information about an error, try `rustc --explain E0412`. error: Could not compile `openssl`. warning: build failed, waiting for other jobs to finish... ``` this patch fixes the problem | ||||
| * | push PSK callback errors onto ErrorStack | Benjamin Cheng | 2018-06-02 | 1 | -2/+8 |
| | | |||||
| * | Use is_null() | Benjamin Cheng | 2018-06-02 | 1 | -1/+1 |
| | | |||||
| * | Merge remote-tracking branch 'origin/master' | Benjamin Cheng | 2018-06-02 | 1 | -26/+49 |
| |\ | |||||
| | * | Support ALPN on libressl | Steven Fackler | 2018-05-20 | 1 | -3/+6 |
| | | | | | | | | | Closes #690 | ||||
| | * | Overhaul openssl cfgs | Steven Fackler | 2018-05-20 | 1 | -24/+44 |
| | | | | | | | | | Also expose hostname verification on libressl | ||||
| * | | Add wrapper for SSL_CTX_set_psk_server_callback | Benjamin Cheng | 2018-05-16 | 1 | -1/+35 |
| |/ | |||||
| * | Clean up SSL callbacks | Steven Fackler | 2018-05-12 | 1 | -29/+36 |
| | | | | | | Also add an Arc to avoid a weird use after free edge case if a callback changes a callback. | ||||
| * | Change SslContext callback handling | Steven Fackler | 2018-05-12 | 1 | -108/+109 |
| | | | | | Use the existing infrastructure! | ||||
| * | Update to OpenSSL 1.1.1-pre3 | Benjamin Saunders | 2018-03-28 | 1 | -0/+49 |
| | | |||||
| * | Remove version-specific features | Steven Fackler | 2018-03-19 | 1 | -18/+16 |
| | | | | | Closes #852 | ||||
| * | Add a Sync + Send bound to the custom ext type | Steven Fackler | 2018-03-11 | 1 | -25/+50 |
| | | | | | | It's stored inside of the Ssl, so this is probably tecnically necessarly? | ||||
| * | Generic custom extension add fn return type | Benjamin Saunders | 2018-03-10 | 1 | -21/+21 |
| | | |||||
| * | High-level API for OpenSSL 1.1.1 custom extension support | Benjamin Saunders | 2018-03-09 | 1 | -0/+93 |
| | | |||||
| * | Restore error stack in cookie callback | Steven Fackler | 2018-02-25 | 1 | -7/+12 |
| | | |||||
| * | Expose cookie generate/verify callback setters | Benjamin Saunders | 2018-02-25 | 1 | -0/+50 |
| | | |||||
| * | Add the ability to push errors back onto the error stack. | Steven Fackler | 2018-02-24 | 1 | -12/+12 |
| | | |||||
| * | Add some debugging-related bindings | Steven Fackler | 2018-02-17 | 1 | -0/+18 |
| | | |||||
| * | Bind remove and get session callbacks | Steven Fackler | 2018-02-16 | 1 | -1/+49 |
| | | |||||
| * | SSL session callbacks have always been around | Steven Fackler | 2018-02-16 | 1 | -5/+1 |
| | | |||||
| * | Add more session cache support | Steven Fackler | 2018-02-15 | 1 | -0/+25 |
| | | |||||
| * | Tweak features | Steven Fackler | 2018-02-14 | 1 | -2/+4 |
| | | | | | We should keep the version features totally separate for now. | ||||
| * | Adjust the SNI callback | Steven Fackler | 2018-01-06 | 1 | -12/+7 |
| | | | | | Brings it more in line with how the raw callback is structured. | ||||
| * | Parameterize keys over what they contain | Steven Fackler | 2017-12-30 | 1 | -4/+5 |
| | | | | | Closes #790 | ||||
| * | Overhaul ALPN | Steven Fackler | 2017-12-27 | 1 | -81/+23 |
| | | | | | | | | | There was previously a lot of behind the scenes magic. We now bind much more directly to the relevant functions. Also remove APN support. That protocol is supersceded by ALPN - let's see if anyone actually needs to use it. | ||||
| * | Drop Any bounds | Steven Fackler | 2017-12-26 | 1 | -10/+8 |
| | | |||||
| * | Remove deprecated APIs | Steven Fackler | 2017-12-25 | 1 | -1/+1 |
| | | |||||
| * | Fix a bunch of FIXMEs | Steven Fackler | 2017-12-25 | 1 | -9/+8 |
| | | |||||
| * | Fix build | Steven Fackler | 2017-07-15 | 1 | -0/+2 |
| | | |||||
| * | Move callbacks to a submodule | Steven Fackler | 2017-07-15 | 1 | -0/+337 |