| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | | | Merge pull request #342 from wuerges/master | Steven Fackler | 2016-01-28 | 1 | -0/+2 | |
| | |\ \ \ | | |/ / | |/| | | Improved README.md for Fedora | |||||
| | | * | | Improved README.md for Fedora | Emilio Wuerges | 2016-01-27 | 1 | -0/+2 | |
| | |/ / | ||||||
| | * | | Remove unwraps from rsa accessors | Steven Fackler | 2016-01-22 | 1 | -10/+11 | |
| | | | | ||||||
| | * | | Merge pull request #330 from esclear/master | Steven Fackler | 2016-01-22 | 5 | -4/+102 | |
| | |\ \ | | | | | | | | | Add a interface to RSA structs | |||||
| | | * | | Fix up RSA integration | Daniel Albert | 2016-01-20 | 2 | -2/+2 | |
| | | | | | ||||||
| | | * | | Merge branch 'master' of https://github.com/sfackler/rust-openssl | Daniel Albert | 2016-01-20 | 10 | -15/+350 | |
| | | |\ \ | ||||||
| | | * | | | Fix incorrect unsafe declaration | Daniel Albert | 2016-01-12 | 1 | -10/+21 | |
| | | | | | | ||||||
| | | * | | | Adhere to rust conventions | Daniel Albert | 2016-01-12 | 1 | -10/+6 | |
| | | | | | | ||||||
| | | * | | | Make all ffi structs' fields public | Daniel Albert | 2016-01-12 | 1 | -15/+15 | |
| | | | | | | ||||||
| | | * | | | Make the BigNum generation from a native pointer unsafe | Daniel Albert | 2016-01-09 | 1 | -8/+6 | |
| | | | | | | ||||||
| | | * | | | Add public interface to access BigNums from RSA keys | Daniel Albert | 2016-01-01 | 1 | -0/+39 | |
| | | | | | | ||||||
| | | * | | | Implement the possibility to create BigNums from their ffi counterpart | Daniel Albert | 2016-01-01 | 1 | -0/+14 | |
| | | | | | | ||||||
| | | * | | | Add RSA structs | Daniel Albert | 2016-01-01 | 3 | -4/+44 | |
| | | | |/ | | |/| | ||||||
| | * | | | Exclude test directory from package | Steven Fackler | 2016-01-22 | 1 | -0/+1 | |
| | | | | | ||||||
| | * | | | Merge branch 'release' | Steven Fackler | 2016-01-22 | 7 | -13/+13 | |
| | |\ \ \ | |/ / / |/| | | | ||||||
| * | | | | Merge branch 'release-v0.7.5' into releasev0.7.5 | Steven Fackler | 2016-01-22 | 14 | -49/+379 | |
| |\ \ \ \ | ||||||
| | * | | | | Release v0.7.5 | Steven Fackler | 2016-01-22 | 7 | -13/+13 | |
| | |/ / / | ||||||
| | * | | | Fix connect and accept error reporting | Steven Fackler | 2016-01-22 | 1 | -20/+16 | |
| | | | | | | | | | | | | | | | | | | | | | We were previously trying to create an error twice so the second wouldn't be correct. | |||||
| | * | | | Merge pull request #339 from jimmycuadra/allow-raw-pointer-derive | Steven Fackler | 2016-01-22 | 1 | -1/+0 | |
| | |\ \ \ | | |_|/ | |/| | | Remove raw_pointer_derive lint | |||||
| | | * | | Remove raw_pointer_derive lint. | Jimmy Cuadra | 2016-01-22 | 1 | -1/+0 | |
| | |/ / | ||||||
| | * | | Merge pull request #334 from jmesmon/ssl-context | Steven Fackler | 2016-01-19 | 2 | -3/+41 | |
| | |\ \ | | | | | | | | | ssl: fix refcounting of SslContext when set_ssl_context is used | |||||
| | | * | | openssl/ssl/context: test that we are refcounting correctly | Cody P Schafer | 2016-01-18 | 1 | -0/+13 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Not a perfect test, on failure it _might_ exit with this output: Process didn't exit successfully: `/home/cody/g/rust-openssl/openssl/target/debug/openssl-8e712036e3aac4fe` (signal: 11) But unclear if we can do any better. | |||||
| | | * | | ssl: fix refcounting of SslContext when set_ssl_context is used | Cody P Schafer | 2016-01-18 | 1 | -3/+28 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Additionally impl Clone for SslContext to both allow us to use it & allow external users to take advantage of SslContext's internal refcount. Maintain the existing signature for set_ssl_context(), but add inline comments recommending changing it. Fixes #333 | |||||
| | * | | | Merge pull request #336 from jmesmon/x509-pky-clone | Steven Fackler | 2016-01-19 | 3 | -0/+36 | |
| | |\ \ \ | | |/ / | |/| | | impl Clone for PKey and X509 by using their 'references' member | |||||
| | | * | | x509: impl Clone using references & CRYPTO_add() | Cody P Schafer | 2016-01-19 | 2 | -0/+18 | |
| | | | | | ||||||
| | | * | | crypto/pkey: impl Clone for PKey using openssl's ref counting | Cody P Schafer | 2016-01-19 | 2 | -0/+18 | |
| | |/ / | ||||||
| | * | | Fix should_panic check | Steven Fackler | 2016-01-11 | 1 | -3/+3 | |
| | | | | ||||||
| | * | | Test nightly on travis | Steven Fackler | 2016-01-11 | 1 | -0/+4 | |
| | | | | ||||||
| | * | | Add stream panic propagation behind a nightly feature gate | Steven Fackler | 2016-01-11 | 5 | -12/+195 | |
| | | | | ||||||
| | * | | Merge pull request #328 from Cyberunner23/PemRSA | Steven Fackler | 2016-01-09 | 2 | -0/+71 | |
| | |\ \ | | | | | | | | | Add support for RSA PEM files. | |||||
| | | * | | Added tests for private_rsa_key_from_pem() and public_rsa_key_from_pem() | Cyberunner23 | 2016-01-09 | 2 | -1/+21 | |
| | | | | | ||||||
| | | * | | Added private_rsa_key_from_pem and public_rsa_key_from_pem. | Cyberunner23 | 2016-01-05 | 1 | -0/+48 | |
| | | | | | ||||||
| | | * | | Added PEM_read_bio_RSAPrivateKey and PEM_read_bio_RSA_PUBKEY | Cyberunner23 | 2016-01-05 | 1 | -0/+3 | |
| | | |/ | ||||||
| | * | | Merge pull request #329 from bheart/send-sync-pkey | Steven Fackler | 2016-01-06 | 1 | -0/+3 | |
| | |\ \ | | |/ | |/| | Mark PKey as `Send` and `Sync` | |||||
| | | * | Mark PKey as `Send` and `Sync` | Will Tange | 2016-01-07 | 1 | -0/+3 | |
| | |/ | | | | | | | | | Provided that the locking function is set, the underlying `ffi::EVP_KEY` type should be safe to use across threads. | |||||
| | * | Update README doc link | Steven Fackler | 2015-12-18 | 1 | -1/+1 | |
| | | | ||||||
| | * | Merge branch 'release' | Steven Fackler | 2015-12-18 | 6 | -12/+12 | |
| | |\ | |/ |/| | ||||||
| * | | Merge branch 'release-v0.7.4' into releasev0.7.4 | Steven Fackler | 2015-12-18 | 10 | -60/+64 | |
| |\ \ | ||||||
| | * | | Release v0.7.4 | Steven Fackler | 2015-12-18 | 6 | -12/+12 | |
| | |/ | ||||||
| | * | Rustfmt | Steven Fackler | 2015-12-18 | 2 | -2/+2 | |
| | | | ||||||
| | * | Fix deprecation location | Steven Fackler | 2015-12-18 | 1 | -4/+4 | |
| | | | ||||||
| | * | Drop verbose flag | Steven Fackler | 2015-12-18 | 1 | -1/+1 | |
| | | | ||||||
| | * | Add a script to build docs with all features enabled | Steven Fackler | 2015-12-18 | 1 | -0/+10 | |
| | | | ||||||
| | * | Work around the worst of clone bogusness | Steven Fackler | 2015-12-18 | 3 | -43/+37 | |
| | | | | | | | | | | | | | | | | | | | | | SslStream::{clone,try_clone} are inherently broken since the Ssl object shared by both streams is only going to be talking to one stream. Stuff like hyper depends on try_clone, so we'll leave it here for now but minimize the brokenness to "no worse than what it used to be like". They'll be removed in 0.8. cc #325 | |||||
| | * | Merge pull request #324 from gentoo90/deps | Steven Fackler | 2015-12-18 | 1 | -4/+4 | |
| | |\ | | | | | | | Fix Cargo.toml to actually depend on gdi32-sys and user32-sys | |||||
| | | * | Fix Cargo.toml to actually depend on gdi32-sys and user32-sys | gentoo90 | 2015-12-18 | 1 | -4/+4 | |
| | |/ | ||||||
| | * | Merge branch 'release' | Steven Fackler | 2015-12-17 | 7 | -13/+13 | |
| | |\ | |/ |/| | ||||||
| * | | Merge branch 'release-v0.7.3' into releasev0.7.3 | Steven Fackler | 2015-12-17 | 30 | -1205/+1381 | |
| |\ \ | ||||||
| | * | | Release v0.7.3 | Steven Fackler | 2015-12-17 | 7 | -13/+13 | |
| | |/ | ||||||
| | * | Disable cross compilation for now | Steven Fackler | 2015-12-17 | 4 | -9/+15 | |
| | | | ||||||