aboutsummaryrefslogtreecommitdiff
path: root/openssl
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Bump bitflags versionManish Goregaokar2015-06-021-1/+1
|
* 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-184-50/+70
|
* 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
| | |
* | | Release v0.6.2v0.6.2Steven Fackler2015-05-011-2/+2
| |/ |/|
* | Write through to underlying stream for every write callSteven Fackler2015-04-303-11/+35
| | | | | | | | cc #208
* | Release v0.6.1v0.6.1Steven Fackler2015-04-221-2/+2
|/
* 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...
* Clean up build infrastructureSteven Fackler2015-04-082-8/+20
|
* Make connected_socket a dev-dependencyManuel Schölling2015-04-062-4/+4
|
* Adapt code for rust-1.0.0-betaManuel Schölling2015-04-061-9/+6
|
* Fix rebase errorsManuel Schölling2015-04-064-15/+3
|
* Add ability to load private keys from files and use raw keys and ↵Manuel Schölling2015-04-061-1/+1
| | | | | | | | certificates for SslContext Conflicts: openssl/src/crypto/pkey.rs openssl/src/ssl/tests.rs
* Add ability to load private keys from files and use raw keys and ↵Manuel Schölling2015-04-061-2/+5
| | | | | | | certificates for SslContext Conflicts: openssl/src/ssl/tests.rs
* Change SslContext::set_read_ahead(c_long) to SslContext::set_read_ahead(u32)Manuel Schölling2015-04-061-2/+2
|
* Fix preemtively exiting openssl dtls server for testsManuel Schölling2015-04-061-4/+6
|
* Debug halteproblem with testsManuel Schölling2015-04-062-3/+6
|
* Move connected_socket to its own crate and fix SSL_CTX_set_read_ahead()Manuel Schölling2015-04-065-357/+21
|
* Use latest OpenSSL version in travis tests and more verbose error message in ↵Manuel Schölling2015-04-061-2/+5
| | | | ConnectedSocket
* Fix detect_invalid_ipv4 test on OSXManuel Schölling2015-04-061-1/+1
| | | | Looks like the invalid IP 254.254.254.254 is fine for OSX
* Fix OSX related compiler error and correct travis OpenSSL setupManuel Schölling2015-04-061-3/+3
|
* Adjust sin_len/sin6_len for non-linux platformsManuel Schölling2015-04-062-2/+3
| | | | | | Fixing errors for platforms you don't own is really annoying ;) Fixing errors
* Fix portability issue and typoManuel Schölling2015-04-063-23/+68
|
* Fix travis test setup for DTLSManuel Schölling2015-04-062-8/+36
|
* Add DTLSv1 and DTLSv1.2 supportManuel Schölling2015-04-065-94/+190
|
* Add connect() support for UDP socketsManuel Schölling2015-04-064-20/+362
|
* Release v0.6.0v0.6.0Steven Fackler2015-04-051-2/+2
|
* Merge pull request #186 from manuels/set_raw_keySteven Fackler2015-04-054-51/+145
|\ | | | | Use raw keys and certs in SslContext
| * Fix errors in tests (SslVerifyPeer -> SSL_VERIFY_PEER)Manuel Schölling2015-04-031-16/+16
| |
| * Use raw pointers instead of ptr::UniqueManuel Schölling2015-04-031-6/+6
| |
| * Return Result<(),SslError> instead of Option<SslError>Manuel Schölling2015-04-032-22/+22
| |
| * Add SslContext::add_extra_chain_cert()Manuel Schölling2015-04-032-1/+9
| |