| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Release v0.9.2v0.9.2 | Steven Fackler | 2016-11-27 | 1 | -1/+1 |
| | | |||||
| * | Rename ec_key to ec | Steven Fackler | 2016-11-14 | 1 | -0/+1 |
| | | |||||
| * | Some serialization support for EcKey | Steven Fackler | 2016-11-13 | 1 | -40/+2 |
| | | |||||
| * | Release v0.9.1v0.9.1 | Steven Fackler | 2016-11-11 | 1 | -1/+1 |
| | | |||||
| * | Drop rustc-serialize dependency | Steven Fackler | 2016-11-09 | 1 | -2/+1 |
| | | |||||
| * | Release v0.9.0 | Steven Fackler | 2016-11-05 | 1 | -1/+1 |
| | | |||||
| * | Get rid of Ref | Steven Fackler | 2016-11-04 | 1 | -11/+14 |
| | | | | | | There's unfortunately a rustdoc bug that causes all methods implemented for any Ref<T> to be inlined in the deref methods section :( | ||||
| * | Make utility functions private | Steven Fackler | 2016-11-04 | 1 | -3/+3 |
| | | |||||
| * | Implement a generic Stack API to deal with OpenSSL stacks | Lionel Flandrin | 2016-11-01 | 1 | -0/+1 |
| | | |||||
| * | Remove Opaque | Steven Fackler | 2016-10-31 | 1 | -1/+0 |
| | | |||||
| * | Add a generic Ref type | Steven Fackler | 2016-10-31 | 1 | -0/+39 |
| | | |||||
| * | Rustfmt | Steven Fackler | 2016-10-30 | 1 | -5/+1 |
| | | |||||
| * | Implement EcKey | Steven Fackler | 2016-10-30 | 1 | -0/+1 |
| | | | | | cc #499 | ||||
| * | Make verification unconditionally exposed internally | Steven Fackler | 2016-10-28 | 1 | -0/+2 |
| | | |||||
| * | Remove macros module | Steven Fackler | 2016-10-26 | 1 | -2/+0 |
| | | |||||
| * | Move SslString to a shared location | Steven Fackler | 2016-10-26 | 1 | -0/+1 |
| | | |||||
| * | Flatten crypto module | Steven Fackler | 2016-10-22 | 1 | -3/+13 |
| | | |||||
| * | Switch X509Name over to new borrow setup | Steven Fackler | 2016-10-20 | 1 | -0/+1 |
| | | | | | | | The use of actual references enables us to be correct with respect to mutability without needing two structs for the mutable and immutable cases and more deref impls. | ||||
| * | Start on error + BN refactor | Steven Fackler | 2016-10-16 | 1 | -0/+28 |
| | | |||||
| * | De-enumify message digests | Steven Fackler | 2016-10-15 | 1 | -7/+0 |
| | | |||||
| * | Use stdlib logic for udp | Steven Fackler | 2016-10-13 | 1 | -3/+0 |
| | | |||||
| * | Add support for OpenSSL 1.1.0 | Alex Crichton | 2016-10-12 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit is relatively major refactoring of the `openssl-sys` crate as well as the `openssl` crate itself. The end goal here was to support OpenSSL 1.1.0, and lots of other various tweaks happened along the way. The major new features are: * OpenSSL 1.1.0 is supported * OpenSSL 0.9.8 is no longer supported (aka all OSX users by default) * All FFI bindings are verified with the `ctest` crate (same way as the `libc` crate) * CI matrixes are vastly expanded to include 32/64 of all platforms, more OpenSSL version coverage, as well as ARM coverage on Linux * The `c_helpers` module is completely removed along with the `gcc` dependency. * The `openssl-sys` build script was completely rewritten * Now uses `OPENSSL_DIR` to find the installation, not include/lib env vars. * Better error messages for mismatched versions. * Better error messages for failing to find OpenSSL on a platform (more can be done here) * Probing of OpenSSL build-time configuration to inform the API of the `*-sys` crate. * Many Cargo features have been removed as they're now enabled by default. As this is a breaking change to both the `openssl` and `openssl-sys` crates this will necessitate a major version bump of both. There's still a few more API questions remaining but let's hash that out on a PR! Closes #452 | ||||
| * | Release v0.8.3 | Steven Fackler | 2016-09-09 | 1 | -1/+1 |
| | | |||||
| * | Release openssl-sys v0.7.17, openssl v0.8.2 | Steven Fackler | 2016-08-18 | 1 | -1/+1 |
| | | |||||
| * | Release openssl-sys v0.7.16, openssl v0.8.1 | Steven Fackler | 2016-08-15 | 1 | -1/+1 |
| | | |||||
| * | Release openssl-sys v0.7.15, openssl v0.8.0 | Steven Fackler | 2016-08-11 | 1 | -1/+1 |
| | | |||||
| * | Make hmac support optional and remove openssl-sys-extras | Steven Fackler | 2016-08-09 | 1 | -1/+0 |
| | | | | | rust-openssl no longer requires headers for the default feature set. | ||||
| * | Make c_helpers optional | Steven Fackler | 2016-08-09 | 1 | -0/+2 |
| | | |||||
| * | Move init to crate root | Steven Fackler | 2016-08-07 | 1 | -0/+3 |
| | | |||||
| * | Hash reform | Steven Fackler | 2016-08-07 | 1 | -0/+7 |
| | | | | | Closes #430 | ||||
| * | Restructure PEM input/output methods | Steven Fackler | 2016-08-02 | 1 | -1/+1 |
| | | | | | | Dealing with byte buffers directly avoids error handling weirdness and we were loading it all into memory before anyway. | ||||
| * | Drop unused feature gate | Steven Fackler | 2016-07-31 | 1 | -1/+0 |
| | | |||||
| * | Merge remote-tracking branch 'origin/master' into breaks | Steven Fackler | 2016-07-31 | 1 | -1/+1 |
| |\ | |||||
| | * | Release v0.7.14 | Steven Fackler | 2016-07-01 | 1 | -1/+1 |
| | | | |||||
| | * | Release v0.7.13 | Steven Fackler | 2016-05-20 | 1 | -1/+1 |
| | | | |||||
| | * | Release v0.7.12 | Steven Fackler | 2016-05-16 | 1 | -1/+1 |
| | | | |||||
| | * | Release v0.7.11 | Steven Fackler | 2016-05-05 | 1 | -1/+1 |
| | | | |||||
| * | | Revert "Add a new trait based Nid setup" | Steven Fackler | 2016-07-31 | 1 | -1/+0 |
| | | | | | | | | | | | | | This reverts commit 49db4c84dfde2adac65d7834121d09e95d6dbd65. Unclear that this is a good idea | ||||
| * | | Add a new trait based Nid setup | Steven Fackler | 2016-05-03 | 1 | -0/+1 |
| | | | |||||
| * | | Error reform | Steven Fackler | 2016-05-03 | 1 | -3/+4 |
| |/ | |||||
| * | Release v0.7.10 | Steven Fackler | 2016-04-16 | 1 | -1/+1 |
| | | |||||
| * | Update for nightly changes | Steven Fackler | 2016-04-13 | 1 | -1/+1 |
| | | |||||
| * | Resolves #378 - Module version with the version information | David Rajchenbach-Teller | 2016-04-13 | 1 | -0/+1 |
| | | |||||
| * | Release v0.7.9 | Steven Fackler | 2016-04-06 | 1 | -1/+1 |
| | | |||||
| * | Release v0.7.8 | Steven Fackler | 2016-03-18 | 1 | -1/+1 |
| | | |||||
| * | Release v0.7.7 | Steven Fackler | 2016-03-17 | 1 | -1/+1 |
| | | |||||
| * | Release v0.7.6 | Steven Fackler | 2016-02-10 | 1 | -1/+1 |
| | | |||||
| * | Release v0.7.5 | Steven Fackler | 2016-01-22 | 1 | -1/+1 |
| | | |||||
| * | Add stream panic propagation behind a nightly feature gate | Steven Fackler | 2016-01-11 | 1 | -0/+1 |
| | | |||||
| * | Release v0.7.4 | Steven Fackler | 2015-12-18 | 1 | -1/+1 |
| | | |||||