aboutsummaryrefslogtreecommitdiff
path: root/openssl/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | Add bindings to SSL_get_finished and SSL_get_peer_finishedSteven Fackler2018-05-241-6/+46
| | | | | | | | These are used for the tls-unique SCRAM channel binding mode.
* | Merge pull request #920 from Ralith/max-early-data-accessorsSteven Fackler2018-05-221-1/+186
|\ \ | | | | | | TLS1.3 early data support
| * | Expose early I/OBenjamin Saunders2018-05-221-1/+89
| | |
| * | Expose early keying material exportBenjamin Saunders2018-05-171-0/+27
| | |
| * | Expose max TLS1.3 early data accessorsBenjamin Saunders2018-05-171-0/+70
| |/
* | Revert "Move proto version accessors to SslContextRef"Steven Fackler2018-05-201-52/+44
| |
* | Move proto version accessors to SslContextRefSteven Fackler2018-05-201-44/+52
| | | | | | | | Add a Derf impl for SslContextBuilder so existing use still works.
* | Improve error Display implsSteven Fackler2018-05-201-8/+9
| |
* | Make Stack Sync + SendSteven Fackler2018-05-201-9/+15
| |
* | Support ALPN on libresslSteven Fackler2018-05-203-17/+21
| | | | | | | | Closes #690
* | Overhaul openssl cfgsSteven Fackler2018-05-2020-858/+870
| | | | | | | | Also expose hostname verification on libressl
* | Support min/max version in LibreSSLSteven Fackler2018-05-195-32/+42
|/ | | | | Their implementations of the accessors don't behave expected with no bounds, so we ignore those bits of the tests.
* Merge pull request #902 from ur0/CMS_signSteven Fackler2018-05-131-1/+87
|\ | | | | Add the CMS_sign and i2d_CMS_ContentInfo function bindings
| * Gate away CMS_KEY_PARAM from OpenSSL 1.0.1Umang Raghuvanshi2018-05-101-1/+2
| |
| * Properly version-gate CMS constantsUmang Raghuvanshi2018-05-101-0/+1
| |
| * Move CMS_* flags to the openssl-sys packageUmang Raghuvanshi2018-05-101-24/+31
| | | | | | | | Also renames attributes in the bitflags struct.
| * Use bitflags for CMS optionsUmang Raghuvanshi2018-04-261-2/+29
| |
| * Implement CR suggestionsUmang Raghuvanshi2018-04-221-32/+34
| | | | | | | | | | | | * Don't do un-necessary heap pointer gymnastics * Use the to_der! macro instead of a manually written impl * Allow optional arguments for CMS_sign
| * Add the CMS_sign and i2d_CMS_ContentInfo function bindingsUmang Raghuvanshi2018-04-201-1/+49
| | | | | | | | | | This adds the CMS_sign and i2d_CMS_ContentInfo bindings in the openssl-sys crate and Rusty wrappers in the openssl crate.
* | Implement Clone for RsaSteven Fackler2018-05-121-1/+24
| | | | | | | | Closes #917
* | Merge Ssl impl blocksSteven Fackler2018-05-121-57/+55
| |
* | Clean up SSL callbacksSteven Fackler2018-05-122-68/+76
| | | | | | | | | | Also add an Arc to avoid a weird use after free edge case if a callback changes a callback.
* | Disable tests that talk to Google on LibreSSL 2.5.0Steven Fackler2018-05-122-1/+5
| | | | | | | | | | They're flickering, and I'm assuming it's just because that version is so old.
* | Change SslContext callback handlingSteven Fackler2018-05-122-240/+151
| | | | | | | | Use the existing infrastructure!
* | Fix base version for min/max proto accessorsSteven Fackler2018-05-092-32/+49
| | | | | | | | Closes #911
* | Expose SslSession <-> DER conversionBenjamin Saunders2018-04-291-0/+23
| |
* | Some misc cleanupSteven Fackler2018-04-271-60/+81
| |
* | Remove Rsa::buildSteven Fackler2018-04-251-39/+26
| | | | | | | | It could be a bit confusing since it only works for private keys.
* | Merge pull request #901 from eoger/rsa-from-builderSteven Fackler2018-04-251-20/+89
|\ \ | | | | | | Add RsaPrivateKeyBuilder
| * | Add RsaPrivateKeyBuilderEdouard Oger2018-04-251-20/+89
| |/ | | | | | | Fixes #837
* / Add functions to X509Req to obtain public key and extensionsRené Richter2018-04-212-0/+26
|/ | | | This allows for basic CSR signing.
* Document that encrypt/decrypt use paddingRohit Aggarwal2018-04-161-2/+2
|
* Return `PKey<Private>` from `private_key_from_der`Bastian Köcher2018-04-041-1/+1
|
* Merge pull request #858 from Ralith/stateless-apiSteven Fackler2018-03-313-41/+331
|\ | | | | Introduce SslStreamBuilder
| * Add test for stateless connectionBenjamin Saunders2018-03-281-2/+119
| |
| * Introduce SslStreamBuilderBenjamin Saunders2018-03-281-34/+114
| |
| * Update to OpenSSL 1.1.1-pre3Benjamin Saunders2018-03-282-5/+98
| |
* | Fix a flag nameSteven Fackler2018-03-291-3/+5
| |
* | Clean up a couple of holdovers from old featuresSteven Fackler2018-03-295-106/+95
| |
* | Add Asn1IntegerRef::to_bnSteven Fackler2018-03-282-6/+18
| | | | | | | | Also deprecate Asn1IntegerRef since it's just asking for trouble.
* | Add X509Ref::serial_numberSteven Fackler2018-03-281-0/+13
|/
* Remove a last couple featuresSteven Fackler2018-03-192-11/+18
|
* Merge pull request #856 from Flakebi/masterSteven Fackler2018-03-192-1/+98
|\ | | | | Make it possible to use cmac
| * Make it possible to use cmacFlakebi2018-03-192-1/+98
| | | | | | | | | | | | | | | | This adds Signer::new_without_digest to create Signers which don't have a digest (like cmac, which is based on aes). As openssl supports cmac since version 1.1.0, the functions are behind the ossl110 feature. This allows building CMAC/OMAC1 and the EAX AEAD on top of this library.
* | Remove version-specific featuresSteven Fackler2018-03-199-169/+150
| | | | | | | | Closes #852
* | Merge pull request #875 from Ralith/hash-extrasSteven Fackler2018-03-163-0/+44
|\ \ | |/ |/| Expose cipher digests and digest sizes
| * Expose additional cipher and digest accessorsBenjamin Saunders2018-03-163-0/+44
| |
* | Merge pull request #874 from rohit-lshift/priv-key-from-numSteven Fackler2018-03-131-0/+39
|\ \ | |/ |/| Added a function to create a EcKey<Private> from its parts
| * Change function name to be similar to RSA oneRohit Aggarwal2018-03-131-3/+3
| |
| * Added a function to create a EC<Key> from its partsRohit Aggarwal2018-03-091-0/+39
| |