aboutsummaryrefslogtreecommitdiff
path: root/openssl/src
Commit message (Collapse)AuthorAgeFilesLines
...
| * Merge pull request #538 from semarie/libresslSteven Fackler2016-12-223-5/+13
| |\ | | | | | | Add LibreSSL support
| | * Add LibreSSL 2.5.0 supportSébastien Marie2016-12-213-5/+13
| | |
| * | Handle zero-length reads/writesAlex Crichton2016-12-202-0/+24
| | | | | | | | | | | | | | | | | | | | | This commit adds some short-circuits for zero-length reads/writes to `SslStream`. Because OpenSSL returns 0 on error, then we could mistakenly confuse a 0-length success as an actual error, so we avoid writing or reading 0 bytes by returning quickly with a success.
| * | Release v0.9.3v0.9.3Steven Fackler2016-12-091-1/+1
| | |
| * | Switch to docs.rs for docsSteven Fackler2016-12-091-1/+1
| |/
| * Fix ErrorStack displaySteven Fackler2016-12-091-2/+2
| |
| * Add Blowfish tests0xa2016-12-091-0/+74
| |
| * Use EVP_bf_cfb64 instead of EVP_bf_cfb0xa2016-12-091-2/+2
| |
| * Add Blowfish support0xa2016-12-091-0/+16
| |
| * Release v0.9.2v0.9.2Steven Fackler2016-11-271-1/+1
| |
| * Implement Clone for SslConnector and SslAcceptorSteven Fackler2016-11-271-0/+2
| |
| * CleanupSteven Fackler2016-11-273-12/+8
| |
| * Return Option from groupSteven Fackler2016-11-161-3/+6
| |
| * Remove EcGroup constructorsSteven Fackler2016-11-161-36/+1
| | | | | | | | | | You also need a generator and possibly other stuff. Let's hold off on construction until someone has a concrete requirement for them.
| * Test elliptic curve signaturesSteven Fackler2016-11-151-0/+17
| |
| * Add a test for mul_generatorSteven Fackler2016-11-151-0/+10
| |
| * Turns out yet another variant of EC_POINT_mul is allowed!Steven Fackler2016-11-151-4/+21
| |
| * Rename ec_key to ecSteven Fackler2016-11-147-367/+371
| |
| * Split EcKey::mulSteven Fackler2016-11-141-6/+22
| |
| * Add EcPoint::invertSteven Fackler2016-11-141-0/+7
| |
| * Fix non-static EcGroup method locationsSteven Fackler2016-11-141-0/+2
| |
| * Add EcKey::check_keySteven Fackler2016-11-131-0/+5
| |
| * More functionalitySteven Fackler2016-11-131-2/+155
| |
| * More functionalitySteven Fackler2016-11-131-2/+26
| |
| * Public keys are not always presentSteven Fackler2016-11-131-1/+1
| |
| * Rename new_by_curve_name to from_curve_nameSteven Fackler2016-11-133-4/+9
| |
| * Add Some more elliptic curve functionalitySteven Fackler2016-11-131-1/+113
| |
| * Remove some stray manual implsSteven Fackler2016-11-133-32/+6
| |
| * Macroise from_pemSteven Fackler2016-11-136-75/+35
| |
| * Macroise to_pemSteven Fackler2016-11-133-33/+36
| |
| * Macroise from_derSteven Fackler2016-11-137-92/+52
| |
| * Macroise to_derSteven Fackler2016-11-137-91/+47
| |
| * Make password callback return a ResultSteven Fackler2016-11-134-5/+11
| |
| * Support serialization of encrypted private keysSteven Fackler2016-11-134-4/+54
| | | | | | | | | | Switch to PEM_write_bio_PKCS8PrivateKey since the other function outputs nonstandard PEM when encrypting.
| * Add private_key_from_pem_passphraseSteven Fackler2016-11-134-2/+37
| |
| * Macro-implement private_key_to_pemSteven Fackler2016-11-134-44/+22
| |
| * Some serialization support for EcKeySteven Fackler2016-11-137-118/+148
| |
| * No need to use a raw string anymoreSteven Fackler2016-11-131-2/+2
| |
| * Use ffdhe2048 in mozilla_intermediateSteven Fackler2016-11-121-42/+8
| |
| * Be a bit more emphatic about the dangerSteven Fackler2016-11-122-4/+4
| |
| * Add a connect method that does not perform hostname verificationSteven Fackler2016-11-122-4/+49
| | | | | | | | The method name is intentionally painful to type to discourage its use
| * Simplify test logic a bitSteven Fackler2016-11-121-10/+2
| |
| * Add a missing initSteven Fackler2016-11-121-0/+1
| |
| * Add constructors for various standard primesSteven Fackler2016-11-121-0/+73
| |
| * Add SslRef::set_{tmp_dh,tmp_ecdh,ecdh_auto}Steven Fackler2016-11-121-0/+18
| |
| * Pick different cipher lists on 1.0.1 and 1.0.2Steven Fackler2016-11-121-2/+10
| |
| * Adjust cipher lists to work on older versionsSteven Fackler2016-11-121-4/+4
| |
| * Add SslRef::set_tmp_{ec,}dh_calbackSteven Fackler2016-11-122-3/+141
| |
| * Add SslContextBuilder::set_tmp_{ec,}dh_callbackSteven Fackler2016-11-124-6/+152
| |
| * Drop bits to u32Steven Fackler2016-11-121-2/+2
| |