aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys/src
Commit message (Collapse)AuthorAgeFilesLines
* 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
* 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
|
* Adjust libressl version detectionSteven Fackler2017-11-132-8/+8
| | | | | 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-132-8/+8
|
* Fix cfgs for libressl262Christopher Vittal2017-10-042-8/+8
|
* Properly handle IPs in hostname verificationSteven Fackler2017-09-201-0/+6
|
* opensslè-sys: adjust some constants to libressl 2.6.1Marc-Antoine Perennou2017-09-172-1/+12
| | | | Signed-off-by: Marc-Antoine Perennou <[email protected]>
* 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
|
* Add a stateful SHA256 hasherSteven Fackler2017-08-141-0/+18
|
* Release v0.9.16v0.9.16Steven Fackler2017-08-101-1/+1
|
* 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-191-1/+1
|
* RustfmtSteven Fackler2017-07-155-1015/+1207
|
* 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
* | 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
| |
* | Add PKey::private_key_from_derSteven Fackler2017-06-231-0/+1
| |
* | Release v0.9.14v0.9.14Steven Fackler2017-06-141-1/+1
| |
* | Fix for changes in OpenSSL 1.1.0fSteven Fackler2017-06-061-1/+13
| |
* | Release v0.9.13v0.9.13Steven Fackler2017-05-291-1/+1
|/
* Explicitly initialize OpenSSL 1.1.0Steven Fackler2017-05-201-1/+14
|
* RustfmtSteven Fackler2017-05-206-462/+972
|
* Release v0.9.12v0.9.12Steven Fackler2017-05-121-1/+1
|
* Fix support for LibreSSL versions other than 2.5.0Steven Fackler2017-05-123-210/+311
|
* 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-141-1/+1
|
* (issues-600) Avoid compiling ec2m code against no-ec2m opensslAndrew Roetker2017-04-111-0/+3
| | | | | This commit avoids defining code that leads to undefined references when compiling against an openssl built with no-ec2m.