aboutsummaryrefslogtreecommitdiff
path: root/openssl
Commit message (Collapse)AuthorAgeFilesLines
...
* Stop returning an Option from cipher descriptionSteven Fackler2016-10-261-8/+3
|
* Fix drop signatureSteven Fackler2016-10-261-1/+1
|
* Remove macros moduleSteven Fackler2016-10-263-19/+13
|
* Don't double-allocate stringsSteven Fackler2016-10-262-17/+17
|
* Move SslString to a shared locationSteven Fackler2016-10-263-39/+47
|
* Add SslMethod::from_ptrSteven Fackler2016-10-261-0/+4
|
* Don't allow mutation of SslContextsSteven Fackler2016-10-253-128/+155
| | | | | | SslContext is reference counted and the various setter methods don't take out locks where necessary. Fix this by adding a builder for the context.
* Support AES GCMSteven Fackler2016-10-251-0/+16
| | | | Closes #326
* Add a shutdown methodSteven Fackler2016-10-252-1/+63
|
* Fix orderingSteven Fackler2016-10-251-59/+59
|
* Add into_errorSteven Fackler2016-10-231-0/+5
|
* Fix Send + Sync-ness of SslStreamSteven Fackler2016-10-233-33/+45
|
* Remove NIDs only defined in 1.0.2+Steven Fackler2016-10-231-39/+1
|
* Fix testsSteven Fackler2016-10-224-16/+16
|
* Use constants rather than constructors for NidSteven Fackler2016-10-224-3822/+970
|
* Camel case RsaSteven Fackler2016-10-224-36/+36
|
* Camel case DsaSteven Fackler2016-10-223-30/+30
|
* De-enumify NidSteven Fackler2016-10-224-213/+3837
|
* Fix hasher docsSteven Fackler2016-10-221-1/+1
|
* Flatten crypto moduleSteven Fackler2016-10-2217-75/+57
|
* Properly propagate panicsSteven Fackler2016-10-211-8/+11
|
* Borrow compression stringSteven Fackler2016-10-211-13/+10
|
* Rename SslContextOptionsSteven Fackler2016-10-211-7/+7
|
* Fix X509StoreContextSteven Fackler2016-10-213-23/+24
|
* Update BigNumRefSteven Fackler2016-10-214-94/+97
|
* Convert X509VerifyParamRefSteven Fackler2016-10-213-12/+17
|
* Borrowed servernameSteven Fackler2016-10-211-6/+8
|
* Convert SslCipherRefSteven Fackler2016-10-211-14/+16
|
* Convert SslRefSteven Fackler2016-10-212-21/+29
|
* Convert SslContextRefSteven Fackler2016-10-212-15/+23
|
* Update Asn1TimeRefSteven Fackler2016-10-212-33/+38
|
* Convert X509RefSteven Fackler2016-10-211-21/+23
|
* Switch X509Name over to new borrow setupSteven Fackler2016-10-203-8/+26
| | | | | | The use of actual references enables us to be correct with respect to mutability without needing two structs for the mutable and immutable cases and more deref impls.
* Store a MidHandshakeSslStream in fatal errorsSteven Fackler2016-10-201-16/+39
| | | | | This in particular allows the X509 verification error to be retrieved, as well as the stream itself.
* Redo SslStream constructionSteven Fackler2016-10-202-150/+98
| | | | | | SslStream is now constructed via methods on Ssl. You realistically want to create an Ssl for SNI and hostname verification so making it harder to construct a stream directly from an SslContext is a good thing.
* Allow the X509 verify error to be read from an SslRefSteven Fackler2016-10-182-18/+26
|
* De-enumify X509ValidationErrorSteven Fackler2016-10-181-83/+60
| | | | | | Also make it an Error. Closes #352.
* Drop lifetime on GeneralNamesSteven Fackler2016-10-181-10/+7
|
* Callback cleanupSteven Fackler2016-10-182-35/+24
|
* Don't ignore errors in NPN/ALPN logicSteven Fackler2016-10-182-19/+32
| | | | Closes #479
* Implement new feature setupSteven Fackler2016-10-178-57/+54
| | | | | | | | The basic idea here is that there is a feature for each supported OpenSSL version. Enabling multiple features represents support for multiple OpenSSL versions, but it's then up to you to check which version you link against (probably by depending on openssl-sys and making a build script similar to what openssl does).
* Fix missing importSteven Fackler2016-10-161-0/+1
|
* Fix algorithm fieldSteven Fackler2016-10-161-2/+1
|
* Finish BN overhaulSteven Fackler2016-10-162-290/+192
|
* Finish error overhaulSteven Fackler2016-10-166-185/+101
|
* ssl error handling cleanupSteven Fackler2016-10-163-90/+85
|
* Finish crypto error cleanupSteven Fackler2016-10-162-23/+21
|
* More error cleanupSteven Fackler2016-10-165-158/+170
| | | | Also allocation free RSA
* Continue error handling cleanupSteven Fackler2016-10-163-183/+131
| | | | Also overhaul/clean up pkcs5 internals
* Start on error + BN refactorSteven Fackler2016-10-164-205/+200
|