aboutsummaryrefslogtreecommitdiff
path: root/openssl/src/c_helpers.c
Commit message (Collapse)AuthorAgeFilesLines
* Add support for OpenSSL 1.1.0Alex Crichton2016-10-121-67/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Add `"x509_expiry"` feature flagDavid Weinstein2016-08-171-2/+2
| | | | | - fix return of `ASN1_TIME_print` - assert on null `date`
* Progress on asn1 expiryDavid Weinstein2016-08-171-0/+8
| | | | | | - Use MemBio and implement `Display` for Asn1Time - Tweak doc for asn1 `not_before`, `not_after`
* Mangle c helper functionsSteven Fackler2016-08-131-10/+10
| | | | | | | We want to make sure that multiple openssl versions can coexist in the same dependency tree. Closes #438
* Fix buildSteven Fackler2016-08-091-0/+12
|
* Make hmac support optional and remove openssl-sys-extrasSteven Fackler2016-08-091-0/+34
| | | | rust-openssl no longer requires headers for the default feature set.
* Move X509_get_extensions to openssl helpersSteven Fackler2016-08-091-0/+4
|
* Remove rust_SSL_cloneSteven Fackler2016-08-091-4/+0
|
* add EVP_PKEY_copy_parameters to FFIKevin King2016-04-061-4/+0
| | | | | | copy EVP_PKEY params in PKey::clone test that PKey::clone creates a copy
* Revert "Revert "impl Clone for PKey and X509 by using their 'references' ↵Steven Fackler2016-01-311-0/+8
| | | | member""
* Revert "impl Clone for PKey and X509 by using their 'references' member"Steven Fackler2016-01-281-8/+0
|
* x509: impl Clone using references & CRYPTO_add()Cody P Schafer2016-01-191-0/+4
|
* crypto/pkey: impl Clone for PKey using openssl's ref countingCody P Schafer2016-01-191-0/+4
|
* Cleanup SNI stuffSteven Fackler2015-12-151-0/+4
|
* Replace SslStream implementation!Steven Fackler2015-12-091-0/+5