aboutsummaryrefslogtreecommitdiff
path: root/openssl/src
Commit message (Collapse)AuthorAgeFilesLines
* Move BIO macros into -sysSteven Fackler2016-08-041-2/+2
|
* Stop once-ing init wrapperSteven Fackler2016-08-041-3/+2
| | | | The underlying function already once-s itself
* Support basic SSL options without C shimsSteven Fackler2016-08-041-51/+31
|
* Define SSL_CTX_set_mode in openssl-sysSteven Fackler2016-08-021-1/+1
|
* Merge remote-tracking branch 'origin/breaks'Steven Fackler2016-08-0218-1513/+814
|\
| * Restructure PEM input/output methodsSteven Fackler2016-08-0210-391/+194
| | | | | | | | | | Dealing with byte buffers directly avoids error handling weirdness and we were loading it all into memory before anyway.
| * Drop unused feature gateSteven Fackler2016-07-311-1/+0
| |
| * Merge pull request #432 from alexcrichton/mid-handshakeSteven Fackler2016-07-312-19/+136
| |\ | | | | | | Add MidHandshakeSslStream
| | * Add MidHandshakeSslStreamAlex Crichton2016-07-312-19/+136
| | | | | | | | | | | | | | | | | | Allows recognizing when a stream is still in handshake mode and can gracefully transition when ready. The blocking usage of the API should still be the same, just helps nonblocking implementations!
| * | Fix weird inference issue on 1.9Steven Fackler2016-07-312-12/+16
| | |
| * | Fix catch_unwind feature and drop feature gateSteven Fackler2016-07-314-33/+10
| | |
| * | Fix build with dtlsSteven Fackler2016-07-311-2/+2
| |/
| * Merge remote-tracking branch 'origin/master' into breaksSteven Fackler2016-07-3116-142/+1046
| |\
| * | Revert "Add a new trait based Nid setup"Steven Fackler2016-07-312-207/+0
| | | | | | | | | | | | | | | | | | This reverts commit 49db4c84dfde2adac65d7834121d09e95d6dbd65. Unclear that this is a good idea
| * | Fix a few mutable types for `self` parameters.Corey Farwell2016-06-023-7/+7
| | |
| * | Add a new trait based Nid setupSteven Fackler2016-05-032-0/+207
| | |
| * | Remove AsRaw{Fd, Socket} implsSteven Fackler2016-05-031-18/+0
| | | | | | | | | | | | | | | An SslStream can't really act as a raw socket since you'd skip the whole TLS layer
| * | Remove silly internal error enumSteven Fackler2016-05-031-44/+9
| | |
| * | Drop MaybeSslStreamSteven Fackler2016-05-031-61/+0
| | | | | | | | | | | | It should be inlined into crates that depend on it.
| * | Drop is_dtls methods on SslMethodSteven Fackler2016-05-031-26/+6
| | |
| * | Clean up SNI APIsSteven Fackler2016-05-031-73/+30
| | |
| * | Move SslContext::set_verify to a closure based APISteven Fackler2016-05-032-133/+56
| | |
| * | Rename getters in line with conventionsSteven Fackler2016-05-032-11/+9
| | |
| * | Adjust set_ssl_context APISteven Fackler2016-05-031-12/+5
| | |
| * | Error reformSteven Fackler2016-05-0314-415/+318
| | |
| * | Remove deprecated methodsSteven Fackler2016-05-032-93/+25
| | |
| * | Remove NonblockingSslStreamSteven Fackler2016-05-033-191/+14
| | |
* | | BigNum binary operators with different lifetimes.Tomasz Miąsko2016-08-011-10/+10
| |/ |/|
* | Merge pull request #402 from bbatha/feat/dsa-ffiSteven Fackler2016-07-292-0/+352
|\ \ | | | | | | DSA bindings
| * | add low level dsa primitivesBen Batha2016-07-292-0/+352
| | |
* | | improve error handling in rsaBen Batha2016-07-291-28/+14
| | |
* | | Merge pull request #427 from onur/save_derSteven Fackler2016-07-292-0/+35
|\ \ \ | | | | | | | | Implement save_der for X509 and X509Req
| * | | Implement save_der for X509 and X509ReqOnur Aslan2016-07-292-0/+35
| |/ /
* / / Implement get_handle for X509ReqOnur Aslan2016-07-291-0/+4
|/ /
* | Set SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER flagShaun Taheri2016-07-241-1/+1
| |
* | Merge pull request #410 from jonas-schievink/passwd-callbacksSteven Fackler2016-07-034-0/+141
|\ \ | | | | | | Password callbacks
| * | FnMut -> FnOnce, update docsJonas Schievink2016-06-263-3/+7
| | |
| * | Put the test behind the catch_unwind featureJonas Schievink2016-06-261-1/+2
| | | | | | | | | | | | And fix an unused variable warning
| * | Add an RSA key decryption testJonas Schievink2016-06-261-0/+18
| | |
| * | Put password callbacks behind a cargo featureJonas Schievink2016-06-263-2/+13
| | |
| * | Make the callback take a `&mut [c_char]`Jonas Schievink2016-06-262-4/+4
| | |
| * | Add RSA::private_key_from_pem_cbJonas Schievink2016-06-261-1/+22
| | |
| * | Move into utility moduleJonas Schievink2016-06-263-39/+63
| | |
| * | Try to propagate callback panicsJonas Schievink2016-06-261-6/+21
| | |
| * | Add PKey::private_key_from_pem_cbJonas Schievink2016-06-261-1/+48
| | |
* | | Release v0.7.14Steven Fackler2016-07-011-1/+1
| | |
* | | Set auto retrySteven Fackler2016-07-011-1/+8
|/ / | | | | | | | | | | SSL_read returns a WANT_READ after a renegotiation by default which ends up bubbling up as a weird BUG error. Tell OpenSSL to just do the read again.
* | Document BigNumJonas Schievink2016-06-131-0/+169
| |
* | Release v0.7.13Steven Fackler2016-05-201-1/+1
| |
* | Release v0.7.12Steven Fackler2016-05-161-1/+1
| |