| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Support EVP_des_ede3. | Axel Rasmussen | 2018-02-04 | 1 | -0/+15 |
| | | | | | | This cipher is used, for example, for DES challenges for authenticating against a Yubikey, so supporting it in rust-openssl is generally useful. | ||||
| * | Misc cleanup | Steven Fackler | 2018-01-01 | 2 | -24/+9 |
| | | |||||
| * | Move X509Filetype to SslFiletype | Steven Fackler | 2018-01-01 | 3 | -56/+65 |
| | | | | | | | These constants have the same values, but X509_FILETYPE_DEFAULT doesn't work in the Ssl methods and using the SSL_* names is a bit less confusing. | ||||
| * | Bump hex to 0.3 | Bastien Orivel | 2018-01-01 | 8 | -55/+49 |
| | | | | | | The `to_hex` method has been removed and `hex::encode` should be used instead. | ||||
| * | Parameterize keys over what they contain | Steven Fackler | 2017-12-30 | 15 | -589/+774 |
| | | | | | Closes #790 | ||||
| * | Add issuer name access. | Steven Fackler | 2017-12-29 | 1 | -3/+47 |
| | | | | | Closes #808 | ||||
| * | Remove `SslRef::compression` | Steven Fackler | 2017-12-28 | 1 | -24/+0 |
| | | | | | | TLS compression is extremely deprecated, so no-one should be messing with this in the first place. | ||||
| * | Add a parameter to servername | Steven Fackler | 2017-12-28 | 2 | -9/+25 |
| | | |||||
| * | Overhaul ALPN | Steven Fackler | 2017-12-27 | 3 | -293/+146 |
| | | | | | | | | | 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. | ||||
| * | Overhaul ssl error | Steven Fackler | 2017-12-26 | 4 | -351/+150 |
| | | |||||
| * | Split X509StoreContextRef::ssl up | Steven Fackler | 2017-12-26 | 2 | -20/+27 |
| | | |||||
| * | Overhaul verify error type | Steven Fackler | 2017-12-26 | 6 | -68/+71 |
| | | | | | Also set the error in the hostname verification callback for 1.0.1 | ||||
| * | Adjust SslConnector and SslAcceptor construction | Steven Fackler | 2017-12-26 | 4 | -158/+97 |
| | | |||||
| * | Drop Any bounds | Steven Fackler | 2017-12-26 | 3 | -25/+20 |
| | | |||||
| * | Remove deprecated APIs | Steven Fackler | 2017-12-25 | 18 | -902/+58 |
| | | |||||
| * | Fix a bunch of FIXMEs | Steven Fackler | 2017-12-25 | 8 | -74/+70 |
| | | |||||
| * | Tweak default ssl options | Steven Fackler | 2017-12-25 | 1 | -2/+4 |
| | | |||||
| * | Fix tests | Steven Fackler | 2017-12-25 | 3 | -14/+14 |
| | | |||||
| * | Rename X509FileType to X509Filetype | Steven Fackler | 2017-12-25 | 3 | -29/+29 |
| | | |||||
| * | Move to associated consts | Steven Fackler | 2017-12-25 | 9 | -159/+162 |
| | | |||||
| * | Upgrade bitflags to 1.0 | Steven Fackler | 2017-12-25 | 12 | -222/+189 |
| | | | | | Closes #756 | ||||
| * | Make Nid values associated constants | Steven Fackler | 2017-12-25 | 4 | -1000/+995 |
| | | |||||
| * | Clean up 1.0.1 hostname verification | Steven Fackler | 2017-12-23 | 3 | -63/+43 |
| | | |||||
| * | Allow SNI and hostname verification to be configured separately | Steven Fackler | 2017-12-23 | 2 | -70/+101 |
| | | | | | Closes #728 | ||||
| * | Impl Send + Sync for x509 stuff | Steven Fackler | 2017-12-13 | 1 | -8/+8 |
| | | |||||
| * | Fix link | Steven Fackler | 2017-12-09 | 1 | -1/+1 |
| | | |||||
| * | Finish documentation for the ssl module | Steven Fackler | 2017-12-04 | 3 | -50/+241 |
| | | | | | Closes #727 | ||||
| * | Docs for the ssl module. | Steven Fackler | 2017-12-03 | 1 | -36/+431 |
| | | | | | cc #727 | ||||
| * | Impl deref for acceptor/connector builders | Steven Fackler | 2017-12-03 | 3 | -26/+66 |
| | | |||||
| * | Documentation for the `sign` module. | Steven Fackler | 2017-12-03 | 1 | -10/+53 |
| | | | | | Closes #720 | ||||
| * | Rename Signer::finish to sign_to_vec | Steven Fackler | 2017-12-03 | 1 | -17/+24 |
| | | |||||
| * | Clean up tests | Steven Fackler | 2017-12-03 | 1 | -464/+98 |
| | | |||||
| * | Merge pull request #785 from P-E-Meunier/split-signer-finish | Steven Fackler | 2017-12-03 | 1 | -5/+27 |
| |\ | | | | | Splitting the sign::Signer::finish function, to avoid allocations | ||||
| | * | Simplifying finish_into | [email protected] | 2017-12-03 | 1 | -2/+1 |
| | | | |||||
| | * | Splitting the sign::Signer::finish function, to avoid allocations | [email protected] | 2017-12-03 | 1 | -5/+28 |
| | | | |||||
| * | | Adding dp(), dq() and qi() methods to RSA, to get the CRT parameters back | [email protected] | 2017-12-02 | 1 | -0/+43 |
| |/ | |||||
| * | Upgrade foreign-types | Steven Fackler | 2017-11-26 | 3 | -28/+1 |
| | | | | | | foreign-types 0.3 and 0.2 now share the same types and traits, so this is backwards compatible. | ||||
| * | Revert "Update foreign-types to 0.3" | Steven Fackler | 2017-11-21 | 3 | -0/+26 |
| | | |||||
| * | Update foreign-types to 0.3 | Anthony Ramine | 2017-11-21 | 3 | -26/+0 |
| | | |||||
| * | Adjust libressl version detection | Steven Fackler | 2017-11-13 | 2 | -6/+6 |
| | | | | | | The 2.5.3+ and 2.6.3+ series are ABI-stable, so we don't need to whitelist individual releases in those ranges. | ||||
| * | Add support for LibreSSL 2.6.3 | phoebe jenkins | 2017-11-13 | 2 | -6/+6 |
| | | |||||
| * | Added a macro that wraps foreign type, and impl Send and Sync for both, | Paul Florence | 2017-11-10 | 15 | -33/+60 |
| | | | | | | the borrowed type and the owned one. Replaced all invocation of `foreign_type` by `foreign_type_and_impl_send_sync`. | ||||
| * | Add a couple of FIXMEs | Steven Fackler | 2017-11-05 | 1 | -0/+4 |
| | | |||||
| * | Merge pull request #764 from AndyGauge/doc-error | Steven Fackler | 2017-11-05 | 1 | -0/+20 |
| |\ | | | | | Doc error | ||||
| | * | fixed broken example and syntax error in module level documentation | AndyGauge | 2017-11-04 | 1 | -2/+2 |
| | | | |||||
| | * | Error documentation improvement | Andy Gauge | 2017-10-27 | 1 | -0/+20 |
| | | | |||||
| * | | Handle local retries | Steven Fackler | 2017-11-04 | 2 | -94/+100 |
| | | | | | | | | | | | | | | | | | | | | | | | | | OpenSSL can return SSL_ERROR_WANT_READ even on blocking sockets after renegotiation or heartbeats. Heartbeats ignore the flag that normally makes these things handled internally anyway on 1.0.2. To handle this more properly, we now have a special error type we use to signal this event. The `Read` and `Write` implementation automatically retry in this situation since that's what you normally want. People can use `ssl_read` and `ssl_write` if they want the lower level control. Closes #760 | ||||
| * | | Merge pull request #747 from BrianOn99/symm | Steven Fackler | 2017-11-04 | 1 | -6/+152 |
| |\ \ | | | | | | | Symm documentation | ||||
| | * | | Move doc details into another paragraph | BrianOn99 | 2017-10-09 | 1 | -11/+18 |
| | | | | |||||
| | * | | Additional notes on Crypter | Chiu Yue Chun | 2017-10-04 | 1 | -2/+4 |
| | | | | |||||