aboutsummaryrefslogtreecommitdiff
path: root/openssl/src
Commit message (Collapse)AuthorAgeFilesLines
* Release v0.6.4Steven Fackler2015-07-061-1/+1
|
* Add a test that checks whether 3 known subject attributes can be retrieved ↵Jethro Beekman2015-06-301-0/+29
| | | | by NID
* Fix NID definitions to match OpenSSL. The previous numbers were introduced ↵Jethro Beekman2015-06-301-2/+5
| | | | incorrectly in #213
* Fix backcompat methodSteven Fackler2015-06-291-1/+1
|
* Fix build with alpn featureSteven Fackler2015-06-292-3/+3
|
* ssl: support ALPNCody P Schafer2015-06-292-15/+213
| | | | | | | | | | Heavily based on the existing NPN wrapping code. Naming of public functions is identical to the NPN ones with `s/npn/alpn/` applied to prevent devs from needing to remember 2 names (and to let my copy the npn tests and perform the subistution to generate the apln tests). It might make sense to (at some point) use macros or a trait to cut down the duplication.
* ssl/NPN: factor out encoding of the protocol listCody P Schafer2015-06-291-8/+19
| | | | | The intention is to allow the encoding to be reused by the ALPN support code.
* ssl: use a common helper to generate new ex data indexes, switch NPN to a ↵Cody P Schafer2015-06-291-33/+17
| | | | | | | | | | | lazyref Rather than having the verification data idx generation and NPN use there own (similar) impls to generate indexes with destructors, unify them. Make NPNs use of indexes more idomatic by storing the index in a lazyref rather than having a function with static data members.
* More docsSteven Fackler2015-06-281-0/+16
|
* Fix windows buildSteven Fackler2015-06-281-0/+2
|
* DocsSteven Fackler2015-06-281-18/+10
|
* Make the direct constructors the defaultsSteven Fackler2015-06-282-35/+35
|
* Add docs for accept and connectSteven Fackler2015-06-281-0/+22
|
* Rename new_client to connect and new_server to acceptSteven Fackler2015-06-282-44/+49
|
* Implement direct IO supportSteven Fackler2015-06-282-13/+187
|
* Prepare for direct stream supportSteven Fackler2015-06-271-78/+165
|
* Docs tweakSteven Fackler2015-06-271-1/+2
|
* Reduce SslStream constructor duplicationSteven Fackler2015-06-273-45/+64
|
* Initialize stream bufferSteven Fackler2015-06-271-8/+2
|
* Fix set_hostnameSteven Fackler2015-06-271-10/+2
| | | | | | It was previously failing to null terminate the hostname string (was anyone actually using this?). Also move the macro expansion to the C shim.
* Import shim'd HMAC stuff with the original nameSteven Fackler2015-06-271-9/+9
|
* Move macro replicas into C shimSteven Fackler2015-06-271-1/+1
|
* Release v0.6.3Steven Fackler2015-06-251-1/+1
|
* Add a test for connection negotiation failureSteven Fackler2015-06-251-1/+10
|
* Fix EOF handling in retry wrapperSteven Fackler2015-06-253-5/+13
|
* Remove superfluous vec! usageJethro Beekman2015-06-141-9/+9
|
* Use AsRef for backwards compatibility with passing IV as VecJethro Beekman2015-06-141-4/+5
|
* Pass symmetric crypto initialization vector as a sliceJethro Beekman2015-06-121-7/+7
| | | | | Note: This change is backwards-incompatible. Users will need to add turn their parameters into references.
* Correction on sign and verify documentation to be more explicit of rightEmeric Chevalier2015-05-301-8/+17
| | | | behaviour (no hash done by the functions).
* Merge pull request #219 from jethrogb/topic/x509reqSteven Fackler2015-05-291-0/+57
|\ | | | | Implement limited X509_REQ functionality
| * Remove superfluous dead_code attributeJethro Beekman2015-05-281-1/+0
| |
| * Implement limited X509_REQ functionalityJethro Beekman2015-05-281-0/+58
| |
* | Clarify which keys are used whereJethro Beekman2015-05-271-2/+2
|/
* Fix SslString Debug impl and drop lifetimeSteven Fackler2015-05-171-10/+10
|
* Test reading CN from test certificateJoseph Glanville2015-05-182-3/+21
|
* Add support for reading X509 subject informationJoseph Glanville2015-05-183-2/+253
|
* Add test for get_peer_certificate()Joseph Glanville2015-05-161-0/+10
|
* Add accessor for peer_certificateJoseph Glanville2015-05-161-0/+5
|
* Fix doc rootSteven Fackler2015-05-131-1/+1
|
* Merge pull request #210 from manuels/pendingSteven Fackler2015-05-052-0/+36
|\ | | | | Add SslStream.pending()
| * Add SslStream.pending()Manuel Schölling2015-04-302-0/+36
| |
* | Merge pull request #201 from manuels/pkey_cmpSteven Fackler2015-05-041-0/+30
|\ \ | | | | | | Add comparison for PKeys
| * | Move PKey comparison func to public_eq()Manuel Schölling2015-05-011-14/+14
| | |
| * | Add comparison for PKeysManuel Schölling2015-04-161-0/+30
| | |
* | | Abstract over AsRef<Path>Steven Fackler2015-05-021-7/+7
| |/ |/|
* | Write through to underlying stream for every write callSteven Fackler2015-04-303-11/+35
|/ | | | cc #208
* Add X509::public_key()Manuel Schölling2015-04-153-2/+22
|
* Fix nightly build issuesSteven Fackler2015-04-152-8/+1
|
* Fix non-dtls testsSteven Fackler2015-04-081-4/+3
|
* Fix dtls testsSteven Fackler2015-04-081-8/+8
| | | | There's a reason static mut is unsafe...