aboutsummaryrefslogtreecommitdiff
path: root/openssl/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Merge pull request #740 from johnthagen/memcmpSteven Fackler2017-09-281-0/+51
|\ \ \ | | | | | | | | Document memcmp module
| * | | Add instructions for adding OpenSSL DLLs to PATH if needed during installjohnthagen2017-09-281-0/+51
| | |/ | |/|
* / | Document nid modulejohnthagen2017-09-281-0/+28
|/ /
* | Moved details about function and reworded block requirementsAndy Gauge2017-09-281-4/+4
| |
* | Preface with links to conventional AESAndy Gauge2017-09-271-3/+10
| |
* | AES (IGE) encryption documentationAndy Gauge2017-09-261-0/+10
| |
* | AES Module level docs and exampleAndy Gauge2017-09-261-7/+20
| |
* | WIP: document AESAndy Gauge2017-09-251-1/+30
|/
* Properly handle IPs in hostname verificationSteven Fackler2017-09-202-1/+26
|
* Merge pull request #695 from Keruspe/masterSteven Fackler2017-09-172-2/+6
|\ | | | | openssl-sys: support libressl 2.6.1
| * openssl: ecdh_tmp_callback doesn't work with libressl 2.6.1Marc-Antoine Perennou2017-09-171-2/+2
| | | | | | | | Signed-off-by: Marc-Antoine Perennou <[email protected]>
| * openssl: libressl 2.6.1 dropped suuport for npnMarc-Antoine Perennou2017-09-172-0/+4
| | | | | | | | Signed-off-by: Marc-Antoine Perennou <[email protected]>
* | Update default client cipher listSteven Fackler2017-09-161-3/+6
| |
* | Fix indentationSteven Fackler2017-09-151-3/+2
| |
* | Set SSL_MODE_RELEASE_BUFFERS by defaultAlex Crichton2017-09-141-1/+11
|/ | | | Closes #696
* Rename function, removing `get_`Bradley Beddoes2017-08-221-3/+3
| | | | Fix per PR comment, should have been like this from the start :).
* Add ability to get affine coordinates from EcPointBradley Beddoes2017-08-211-21/+93
| | | | | 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/+92
|
* Add SHA1 an SHA224 hashersSteven Fackler2017-08-161-0/+95
|
* Add a stateful SHA256 hasherSteven Fackler2017-08-141-0/+46
|
* Release v0.9.16v0.9.16Steven Fackler2017-08-101-1/+1
|
* Merge pull request #675 from sdemos/masterSteven Fackler2017-08-092-0/+62
|\ | | | | added cms decryption
| * added cms decryptionStephen Demos2017-08-092-0/+62
| |
* | Delete DTLS testsSteven Fackler2017-08-082-76/+4
| |
* | Refine sig for set_public_key_affine_coordinatesBradley Beddoes2017-08-091-5/+5
| | | | | | | | | | | | | | | | | | This functions signature was originally defined to require mutable references for `x` / `y` as the underpinning OpenSSL C API was not `const`. However the actual OpenSSL implementation makes no changes. This being the case we've chosen to reflect non mutability at the Rust level.
* | Fix EC_KEY_set_public_key_affine_coordinatesBradley Beddoes2017-08-091-5/+5
| | | | | | | | | | Previous definition incorrectly used `const` pointers but the underpinning library definition (unfortunately) does not.
* | Set the private key within EcKeyBuilderBradley Beddoes2017-08-091-0/+25
| | | | | | | | | | The initial usecase here is creating EcKey instances from JWK representations, that hold private keys, as defined within RFC 7517.
* | Support for EcKey creation from affine coordinatesBradley Beddoes2017-08-092-1/+37
|/ | | | | | | | | 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.
* Init in bn_ctx constructorSteven Fackler2017-07-301-1/+4
|
* Init in Dh constructorsSteven Fackler2017-07-301-4/+12
|
* Add peer_cert_chainSteven Fackler2017-07-291-0/+15
|
* Ignore dtls testsSteven Fackler2017-07-291-1/+1
| | | | | | They're way too flaky. Closes #525
* Tweak formatting on cipher listSteven Fackler2017-07-261-18/+13
|
* Initialize OpenSSL in DSA constructorSteven Fackler2017-07-251-0/+1
| | | | This fixes the double unlock errors that were popping up on circle
* Release v0.9.15v0.9.15Steven Fackler2017-07-191-1/+1
|
* Fix X509::clone implSteven Fackler2017-07-192-1/+8
| | | | Closes #667
* Remove unused importSteven Fackler2017-07-161-1/+0
|
* Use foreign-type's OpaqueSteven Fackler2017-07-154-18/+6
|
* RustfmtSteven Fackler2017-07-1532-1434/+2999
|
* Init before creating ex indexesSteven Fackler2017-07-151-1/+3
|
* Fix buildSteven Fackler2017-07-152-2/+4
|
* Don't overwrite the configured verify modeSteven Fackler2017-07-151-11/+29
| | | | | We can leverage the new extra data API to configure the verification mode up front so users can reconfigure it as they like.
* Add an API to install extra dataSteven Fackler2017-07-154-11/+122
|
* Move callbacks to a submoduleSteven Fackler2017-07-152-298/+341
|
* Merge pull request #657 from sfackler/rsa-pkcs1Steven Fackler2017-07-061-1/+8
|\ | | | | Support PKCS#1 RSA public keys
| * Support PKCS#1 RSA public keysSteven Fackler2017-07-041-1/+8
| | | | | | | | Closes #656
* | Merge pull request #641 from luser/pskSteven Fackler2017-07-041-1/+49
|\ \ | |/ |/| Expose PSK via a SslContextBuilder::set_psk_callback method
| * Make some changes for review commentsTed Mielczarek2017-06-021-21/+24
| |
| * Expose PSK via a SslContextBuilder::set_psk_callback methodTed Mielczarek2017-05-261-2/+47
| |
* | Add PKey::private_key_from_derSteven Fackler2017-06-231-0/+7
| |