| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Release v0.7.7 | Steven Fackler | 2016-03-17 | 1 | -1/+1 |
| | | |||||
| * | Fix nightly warnings about zero-sized fn pointers | Alex Crichton | 2016-03-11 | 1 | -2/+4 |
| | | |||||
| * | Merge pull request #353 from bluejekyll/master | Steven Fackler | 2016-03-05 | 3 | -1/+79 |
| |\ | | | | | adding functionality to directly get and set RSA public key material | ||||
| | * | making from_raw() unsafe | Benjamin Fry | 2016-03-05 | 1 | -1/+2 |
| | | | |||||
| | * | added public key material to the constructor | Benjamin Fry | 2016-02-28 | 3 | -22/+34 |
| | | | |||||
| | * | review fixes, keep raw RSA initiallization private | Benjamin Fry | 2016-02-23 | 2 | -8/+9 |
| | | | |||||
| | * | adding functionality to directly get and set RSA key material | Benjamin Fry | 2016-02-17 | 3 | -1/+65 |
| | | | |||||
| * | | Make SSLCipher.bits() return a struct. | Erik Johnston | 2016-02-29 | 1 | -10/+14 |
| | | | |||||
| * | | Add SSL_get_version | Erik Johnston | 2016-02-29 | 1 | -11/+42 |
| | | | |||||
| * | | Add support for SSL_CIPHER | Erik Johnston | 2016-02-17 | 1 | -0/+52 |
| | | | |||||
| * | | Release v0.7.6 | Steven Fackler | 2016-02-10 | 1 | -1/+1 |
| | | | |||||
| * | | More deprecated function cleanup | Steven Fackler | 2016-02-08 | 1 | -1/+1 |
| | | | |||||
| * | | Stop using deprecated method | Steven Fackler | 2016-02-08 | 1 | -1/+2 |
| |/ | |||||
| * | Rename Nid uid/UID to prevent breakage | Joe Wilm | 2016-02-02 | 2 | -3/+5 |
| | | |||||
| * | Fix Nid::UID value | Joe Wilm | 2016-02-02 | 2 | -1/+19 |
| | | | | | | Nid::UID (userId) previously held the value of Nid::uid (uniqueIdentifier). | ||||
| * | Revert "Revert "impl Clone for PKey and X509 by using their 'references' ↵ | Steven Fackler | 2016-01-31 | 3 | -0/+36 |
| | | | | | member"" | ||||
| * | Fix PKey RSA constructors | Steven Fackler | 2016-01-30 | 2 | -31/+62 |
| | | | | | | | | | `set1` functions bump the object's refcount so we were previously leaking the RSA object. Split the decode from PEM part out to a method on RSA and use that in the PKey constructors. Also make RSA a pointer and actually free it. | ||||
| * | Revert "impl Clone for PKey and X509 by using their 'references' member" | Steven Fackler | 2016-01-28 | 3 | -36/+0 |
| | | |||||
| * | Preserve X.509 extension insertion order. | Jimmy Cuadra | 2016-01-28 | 2 | -6/+101 |
| | | | | | | | | Ensures that extensions that are order-dependent are inserted in the same order when calling out to OpenSSL during certificate signing. Fixes #327. | ||||
| * | 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 | 4 | -2/+61 |
| |\ | | | | | 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 | 7 | -15/+341 |
| | |\ | |||||
| | * | | 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 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 | 2 | -2/+3 |
| | | | | |||||
| * | | | Release v0.7.5 | Steven Fackler | 2016-01-22 | 1 | -1/+1 |
| | | | | |||||
| * | | | 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 #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 | ||||
| * | | | 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 |
| | | | |||||
| * | | Add stream panic propagation behind a nightly feature gate | Steven Fackler | 2016-01-11 | 4 | -12/+193 |
| | | | |||||
| * | | Merge pull request #328 from Cyberunner23/PemRSA | Steven Fackler | 2016-01-09 | 1 | -0/+68 |
| |\ \ | | | | | | | Add support for RSA PEM files. | ||||
| | * | | Added tests for private_rsa_key_from_pem() and public_rsa_key_from_pem() | Cyberunner23 | 2016-01-09 | 1 | -0/+20 |
| | | | | |||||
| | * | | Added private_rsa_key_from_pem and public_rsa_key_from_pem. | Cyberunner23 | 2016-01-05 | 1 | -0/+48 |
| | |/ | |||||
| * / | 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. | ||||
| * | Release v0.7.4 | Steven Fackler | 2015-12-18 | 1 | -1/+1 |
| | | |||||
| * | Rustfmt | Steven Fackler | 2015-12-18 | 2 | -2/+2 |
| | | |||||
| * | Fix deprecation location | Steven Fackler | 2015-12-18 | 1 | -4/+4 |
| | | |||||
| * | 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 | ||||
| * | Release v0.7.3 | Steven Fackler | 2015-12-17 | 1 | -1/+1 |
| | | |||||
| * | Disable cross compilation for now | Steven Fackler | 2015-12-17 | 1 | -1/+2 |
| | | |||||
| * | Fix nonblocking behavior | Steven Fackler | 2015-12-17 | 2 | -22/+17 |
| | | | | | | | | | A new nonblocking socket may not have finished connecting yet, so reads and writes can return ENOTCONNECTED which we should reinterpret into a WantRead or WantWrite Closes #323 | ||||
| * | Fix regression of c_char type mismatches on ARM | Ondrej Perutka | 2015-12-16 | 1 | -1/+1 |
| | | |||||