aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys
Commit message (Collapse)AuthorAgeFilesLines
...
* | Add more session cache supportSteven Fackler2018-02-152-0/+21
| |
* | OpenSSL 1.1.1 supportSteven Fackler2018-02-132-10/+23
|/
* Added binding for PEM_read_bio_RSAPublicKeyOle Herman Schumacher Elgesem2018-02-141-0/+8
| | | | Signed-off-by: Ole Herman Schumacher Elgesem <[email protected]>
* Release openssl 0.10.3 and openssl-sys 0.9.25openssl-v0.10.3openssl-sys-v0.9.25Steven Fackler2018-02-121-1/+1
|
* Detect FreeBSD OpenSSL automaticallySteven Fackler2018-02-101-24/+30
| | | | Closes #686
* Merge pull request #833 from CmdrMoozy/des_ede3Steven Fackler2018-02-041-0/+1
|\ | | | | Support EVP_des_ede3.
| * Support EVP_des_ede3.Axel Rasmussen2018-02-041-0/+1
| | | | | | | | | | This cipher is used, for example, for DES challenges for authenticating against a Yubikey, so supporting it in rust-openssl is generally useful.
* | Release openssl-sys v0.9.24openssl-sys-v0.9.24Steven Fackler2018-01-101-1/+1
| |
* | Adjust the SNI callbackSteven Fackler2018-01-061-0/+3
| | | | | | | | Brings it more in line with how the raw callback is structured.
* | Merge pull request #820 from sfackler/key-constructor-docsSteven Fackler2018-01-061-0/+2
|\ \ | | | | | | Rename key serialization/deserialization methods
| * | Rename key serialization/deserialization methodsSteven Fackler2018-01-061-0/+2
| |/ | | | | | | | | | | Also document their specific formats. Closes #502
* / FIPS mode supportSteven Fackler2018-01-061-0/+5
|/ | | | Closes #818
* Misc cleanupSteven Fackler2018-01-013-24/+12
|
* Move X509Filetype to SslFiletypeSteven Fackler2018-01-011-0/+3
| | | | | | These constants have the same values, but X509_FILETYPE_DEFAULT doesn't work in the Ssl methods and using the SSL_* names is a bit less confusing.
* Parameterize keys over what they containSteven Fackler2017-12-301-0/+1
| | | | Closes #790
* Add issuer name access.Steven Fackler2017-12-293-0/+3
| | | | Closes #808
* Overhaul ALPNSteven Fackler2017-12-271-0/+1
| | | | | | | | There was previously a lot of behind the scenes magic. We now bind much more directly to the relevant functions. Also remove APN support. That protocol is supersceded by ALPN - let's see if anyone actually needs to use it.
* Flag off constantSteven Fackler2017-12-261-0/+1
|
* Overhaul verify error typeSteven Fackler2017-12-263-282/+219
| | | | Also set the error in the hostname verification callback for 1.0.1
* 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
| |