aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys
Commit message (Collapse)AuthorAgeFilesLines
...
* | Release v0.9.16v0.9.16Steven Fackler2017-08-102-3/+3
| |
* | Fully wrap feature checksSteven Fackler2017-08-101-2/+2
| | | | | | | | Otherwise OPENSSL_NO_EC2M would also trigger OPENSSL_NO_EC
* | Merge pull request #675 from sdemos/masterSteven Fackler2017-08-091-0/+18
|\ \ | | | | | | added cms decryption
| * | added cms decryptionStephen Demos2017-08-091-0/+18
| | |
* | | Fix EC_KEY_set_public_key_affine_coordinatesBradley Beddoes2017-08-091-1/+1
| | | | | | | | | | | | | | | Previous definition incorrectly used `const` pointers but the underpinning library definition (unfortunately) does not.
* | | Support for EcKey creation from affine coordinatesBradley Beddoes2017-08-091-0/+1
|/ / | | | | | | | | | | | | | | | | Sets the public key for an EcKey based on its affine co-ordinates, i.e. it constructs an EC_POINT object based on the supplied x and y values and sets the public key to be this EC_POINT. The initial usecase here is creating EcKey instances from JWK representations as defined within RFC 7517.
* | Add peer_cert_chainSteven Fackler2017-07-291-0/+1
| |
* | Initialize OpenSSL in DSA constructorSteven Fackler2017-07-251-1/+6
| | | | | | | | This fixes the double unlock errors that were popping up on circle
* | Fix buildSteven Fackler2017-07-251-1/+1
| |
* | Abort on bad unlock and safe core dumpsSteven Fackler2017-07-251-1/+5
| |
* | Release v0.9.15v0.9.15Steven Fackler2017-07-192-3/+3
| |
* | Forbid LibreSSL 2.5.6+Steven Fackler2017-07-191-0/+2
| |
* | Support for LibreSSL 2.5.5Inokentiy Babushkin2017-07-171-0/+8
| |
* | Test against libressl 2.6.0Steven Fackler2017-07-161-2/+2
| |
* | RustfmtSteven Fackler2017-07-156-1073/+1288
| |
* | Merge pull request #657 from sfackler/rsa-pkcs1Steven Fackler2017-07-061-0/+2
|\ \ | | | | | | Support PKCS#1 RSA public keys
| * | Support PKCS#1 RSA public keysSteven Fackler2017-07-041-0/+2
| | | | | | | | | | | | Closes #656
* | | Inform cargo about which env vars we care aboutSteven Fackler2017-07-041-0/+5
| | |
* | | Merge pull request #641 from luser/pskSteven Fackler2017-07-041-0/+9
|\ \ \ | |/ / |/| | Expose PSK via a SslContextBuilder::set_psk_callback method
| * | Make some changes for review commentsTed Mielczarek2017-06-021-7/+8
| | |
| * | Expose PSK via a SslContextBuilder::set_psk_callback methodTed Mielczarek2017-05-261-0/+8
| | |
* | | Enable build on LibreSSL 5.6.0 development branch.Laurence Tratt2017-06-251-1/+9
| | | | | | | | | | | | | | | | | | | | | Without this, openssl-sys can't compile on OpenBSD-current. As far as I can tell, the only differences with respect to LibreSSL 5.5.4 are additional exposed functions: there do not appear to be any breaking changes. Certainly all the test suites in the repository succeed with this commit.
* | | Add PKey::private_key_from_derSteven Fackler2017-06-231-0/+1
| | |
* | | Release v0.9.14v0.9.14Steven Fackler2017-06-142-2/+2
| |/ |/|
* | remove unused dependencies on windowsJim McGrath2017-06-061-4/+0
| |
* | Fix for changes in OpenSSL 1.1.0fSteven Fackler2017-06-062-1/+21
| |
* | Release v0.9.13v0.9.13Steven Fackler2017-05-292-3/+3
|/
* Explicitly initialize OpenSSL 1.1.0Steven Fackler2017-05-201-1/+14
|
* RustfmtSteven Fackler2017-05-207-512/+1026
|
* Release v0.9.12v0.9.12Steven Fackler2017-05-122-3/+3
|
* Fix support for LibreSSL versions other than 2.5.0Steven Fackler2017-05-124-217/+355
|
* Support public key decode from DERSteven Fackler2017-05-061-0/+1
| | | | Closes #629
* Expose the lower level SHA functionsSteven Fackler2017-04-141-0/+6
| | | | | These don't allocate so they're both infallible and significantly faster.
* Release v0.9.11v0.9.11Steven Fackler2017-04-142-3/+3
|
* (issues-600) Avoid compiling ec2m code against no-ec2m opensslAndrew Roetker2017-04-112-0/+4
| | | | | This commit avoids defining code that leads to undefined references when compiling against an openssl built with no-ec2m.
* Add new EC/PKEY methods to permit deriving shared secrets.Andrew Osmond2017-04-101-0/+6
|
* show help message when pkg-config is missingJay Lee2017-03-291-3/+8
|
* Release v0.9.10v0.9.10Steven Fackler2017-03-262-3/+3
|
* Logic to support client-side session reuseSteven Fackler2017-03-254-7/+24
|
* Panic if lock managed by `locking_function` is doubly unlockedPeter Gerber2017-03-162-2/+2
| | | | | | | Trying to unlock an unlocked lock is always an error and should be treated as such. This is related to #597.
* Release v0.9.9v0.9.9Steven Fackler2017-03-142-3/+3
|
* (maint) Recreate ability to pass in OPENSSL_LIBS variableAndrew Roetker2017-03-131-6/+13
| | | | | | | | | Prior to this commit in 43c951f743e68fac5f45119eda7c994882a1d489 the ability to pass OPENSSL_LIBS was removed from the build.rs of openssl-sys. This commit adds the ability to pass custom names for the OPENSSL_LIBS back in. This is useful for when building openssl across linux and windows with the same lib names (ssl:crypto) and the default names provided by the build script are not valid.
* Release v0.9.8v0.9.8Steven Fackler2017-03-092-3/+3
|
* scrypt supportSteven Fackler2017-02-211-0/+1
| | | | Closes #586
* Expose more error informationSteven Fackler2017-02-191-0/+4
|
* fix versions for sys as wellBenjamin Fry2017-02-161-0/+2
|
* add set_verify_cert_store() to ssl ctxBenjamin Fry2017-02-161-0/+5
|
* Support PKCS#8 private key deserializationSteven Fackler2017-02-141-1/+1
| | | | Closes #581
* Release v0.9.7v0.9.7Steven Fackler2017-02-112-3/+3
|
* Fix for libresslSteven Fackler2017-02-112-1/+4
|