aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys
Commit message (Collapse)AuthorAgeFilesLines
* Release v0.9.23v0.9.23Steven Fackler2017-12-051-1/+1
|
* Fixing the CI tests[email protected]2017-12-021-1/+1
|
* Adding dp(), dq() and qi() methods to RSA, to get the CRT parameters back[email protected]2017-12-021-0/+6
|
* Release openssl-sys 0.9.22Steven Fackler2017-11-291-1/+1
|
* Release v0.9.21v0.9.21Steven Fackler2017-11-171-2/+1
|
* Adjust libressl version detectionSteven Fackler2017-11-133-37/+17
| | | | | The 2.5.3+ and 2.6.3+ series are ABI-stable, so we don't need to whitelist individual releases in those ranges.
* Add support for LibreSSL 2.6.3phoebe jenkins2017-11-133-9/+18
|
* Release v0.9.20v0.9.20Steven Fackler2017-10-141-1/+1
|
* Fix cfgs for libressl262Christopher Vittal2017-10-042-8/+8
|
* Add support for LibreSSL 2.6.2Christopher Vittal2017-10-031-1/+10
|
* Fix rerun logicv0.9.19Steven Fackler2017-09-201-2/+2
| | | | Closes #732
* Release v0.9.18Steven Fackler2017-09-201-1/+1
|
* Properly handle IPs in hostname verificationSteven Fackler2017-09-201-0/+6
|
* Update to cc 1.0Steven Fackler2017-09-202-3/+3
|
* openssl-sys: Fix typo in libressl_version definitionLuis Ressel2017-09-181-1/+1
| | | | Signed-off-by: Luis Ressel <[email protected]>
* Merge pull request #695 from Keruspe/masterSteven Fackler2017-09-173-2/+29
|\ | | | | openssl-sys: support libressl 2.6.1
| * opensslè-sys: adjust some constants to libressl 2.6.1Marc-Antoine Perennou2017-09-172-1/+12
| | | | | | | | Signed-off-by: Marc-Antoine Perennou <[email protected]>
| * openssl-sys: define libressl versionMarc-Antoine Perennou2017-09-171-0/+8
| | | | | | | | Signed-off-by: Marc-Antoine Perennou <[email protected]>
| * openssl-sys: support libressl 2.6.1Marc-Antoine Perennou2017-09-141-1/+9
| | | | | | | | Signed-off-by: Marc-Antoine Perennou <[email protected]>
* | Extract prefixed environment variables into helper function.Jessica Hamilton2017-09-131-24/+19
| |
* | Use target name in variables when cross-compiling.Jessica Hamilton2017-09-131-2/+3
| |
* | Allow overriding lib/include dirs when cross-compiling.Jessica Hamilton2017-09-061-4/+16
|/
* Fix build note for MinGWSteven Fackler2017-09-041-1/+1
| | | Closes #689
* Symlink README in placeSteven Fackler2017-08-212-0/+2
| | | | Allows crates.io to render it properly
* Add ability to get affine coordinates from EcPointBradley Beddoes2017-08-211-5/+21
| | | | | The initial usecase here is creating JWK representations as defined within RFC 7517 from an EcKey created via a PEM source.
* Add SHA384 and SHA512Steven Fackler2017-08-161-0/+18
|
* Add SHA1 an SHA224 hashersSteven Fackler2017-08-161-0/+19
|
* Release v0.9.17v0.9.17Steven Fackler2017-08-141-1/+1
|
* Add a stateful SHA256 hasherSteven Fackler2017-08-141-0/+18
|
* Merge pull request #622 from mcgoo/vcpkgSteven Fackler2017-08-112-0/+50
|\ | | | | try to find openssl libraries in a vcpkg ports tree
| * for msvc abi builds, allow use of openssl libs from vcpkgJim McGrath2017-06-072-0/+50
| |
* | 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