aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys/src/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Adds RSA PKCS1 PSS paddingBastian Köcher2018-03-071-0/+1
| | |
| * | Adds `PKeyRef::get_id` to get the OID of a keyBastian Köcher2018-03-071-0/+1
| |/
* / FFI for OpenSSL 1.1.1 custom extension supportBenjamin Saunders2018-03-051-0/+6
|/
* Expose FFI bindings needed for SSL_statelessBenjamin Saunders2018-02-251-0/+36
|
* Merge pull request #850 from sfackler/put-errorSteven Fackler2018-02-241-0/+2
|\ | | | | Add the ability to push errors back onto the error stack.
| * Add the ability to push errors back onto the error stack.Steven Fackler2018-02-241-0/+2
| |
* | Add RFC 5705 supportSteven Fackler2018-02-231-0/+10
|/
* Merge pull request #840 from olehermanse/masterSteven Fackler2018-02-211-0/+1
|\ | | | | Add des_ede3_cbc cipher and more tests/examples
| * Add des_ede3_cbc cipherOle Herman Schumacher Elgesem2018-02-151-0/+1
| | | | | | | | Signed-off-by: Ole Herman Schumacher Elgesem <[email protected]>
* | Add SSL_version bindingSteven Fackler2018-02-171-0/+6
| |
* | SSL session callbacks have always been aroundSteven Fackler2018-02-161-0/+8
| |
* | Add more session cache supportSteven Fackler2018-02-151-0/+16
| |
* | OpenSSL 1.1.1 supportSteven Fackler2018-02-131-6/+12
|/
* Added binding for PEM_read_bio_RSAPublicKeyOle Herman Schumacher Elgesem2018-02-141-0/+8
| | | | Signed-off-by: Ole Herman Schumacher Elgesem <[email protected]>
* 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.
* | 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-011-0/+1
|
* 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
* 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-261-123/+134
| | | | Also set the error in the hostname verification callback for 1.0.1
* Adjust libressl version detectionSteven Fackler2017-11-131-4/+4
| | | | | 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-131-4/+4
|
* Fix cfgs for libressl262Christopher Vittal2017-10-041-4/+4
|
* Properly handle IPs in hostname verificationSteven Fackler2017-09-201-0/+6
|
* opensslè-sys: adjust some constants to libressl 2.6.1Marc-Antoine Perennou2017-09-171-1/+6
| | | | 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
|
* Release v0.9.15v0.9.15Steven Fackler2017-07-191-1/+1
|
* RustfmtSteven Fackler2017-07-151-624/+742
|
* 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
| |