aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys/src
Commit message (Collapse)AuthorAgeFilesLines
* Release v0.6.5Steven Fackler2015-08-311-1/+1
|
* Merge pull request #251 from ebarnard/evp_bytestokeySteven Fackler2015-08-231-0/+6
|\ | | | | Expose EVP_BytesToKey
| * Expose EVP_BytesToKeyEdward Barnard2015-08-231-0/+6
| | | | | | | | | | This is based on work by pyrho. Closes #88
* | Merge pull request #253 from manuels/masterSteven Fackler2015-08-191-0/+2
|\ \ | | | | | | Add get_state_string()
| * | Add get_state_string()Manuel Schölling2015-08-171-0/+2
| |/
* | Merge pull request #240 from jethrogb/topic/x509_req_extensionSteven Fackler2015-08-152-0/+10
|\ \ | |/ |/| Implement certificate extensions for certificate requests
| * Implement certificate extensions for certificate requestsJethro Beekman2015-07-082-0/+10
| |
* | Merge pull request #243 from manuels/masterSteven Fackler2015-08-021-0/+1
|\ \ | | | | | | Fix probelms with DTLS when no packets are pending.
| * | Fix probelms with DTLS when no packets are pending.Manuel Schölling2015-07-181-0/+1
| |/ | | | | | | | | | | | | | | | | | | | | When using DTLS you might run into the situation where no packets are pending, so SSL_read returns len=0. On a TLS connection this means that the connection was closed, but on DTLS it does not (a DTLS connection cannot be closed in the usual sense). This commit fixes a bug introduced by c8d23f3. Conflicts: openssl/src/ssl/mod.rs
* | Merge pull request #242 from awelkie/masterSteven Fackler2015-08-021-2/+4
|\ \ | | | | | | Added AES CTR-mode under feature flag.
| * | Added AES CTR-mode under feature flag.Allen Welkie2015-07-151-2/+4
| |/
* / Add function to write RSA public key as PEMAndrew Dunham2015-07-231-0/+1
|/
* Merge pull request #221 from jethrogb/topic/ssl_optionsSteven Fackler2015-07-082-6/+72
|\ | | | | Several SSL option fixes
| * Decouple C SSL Option bit flags from Rust versionJethro Beekman2015-07-012-6/+72
| | | | | | | | | | | | | | The OpenSSL "SSL_OP_*" flags are in constant flux between different OpenSSL versions. To avoid having to change the Rust definitions, we implement our own numbering system in Rust, and use an automatically-generated C shim to convert the bitflags at runtime.
* | Merge pull request #233 from jethrogb/topic/x509_extensionSteven Fackler2015-07-081-0/+1
|\ \ | | | | | | Allow setting of arbitrary X509 extensions
| * | Add arbitrary X509 extensions by OID stringJethro Beekman2015-07-011-0/+1
| |/
* / Release v0.6.4Steven Fackler2015-07-061-1/+1
|/
* ssl: support ALPNCody P Schafer2015-06-291-1/+19
| | | | | | | | | | 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.
* Reduce SslStream constructor duplicationSteven Fackler2015-06-271-0/+1
|
* Fix set_hostnameSteven Fackler2015-06-272-0/+6
| | | | | | 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-0/+10
|
* Move macro replicas into C shimSteven Fackler2015-06-272-30/+47
|
* Release v0.6.3Steven Fackler2015-06-251-1/+1
|
* Fix EOF handling in retry wrapperSteven Fackler2015-06-251-0/+5
|
* Implement limited X509_REQ functionalityJethro Beekman2015-05-281-0/+5
|
* Fix doc rootSteven Fackler2015-05-131-1/+1
|
* Merge pull request #210 from manuels/pendingSteven Fackler2015-05-051-0/+1
|\ | | | | Add SslStream.pending()
| * Add SslStream.pending()Manuel Schölling2015-04-301-0/+1
| |
* | Merge pull request #201 from manuels/pkey_cmpSteven Fackler2015-05-041-0/+1
|\ \ | |/ |/| Add comparison for PKeys
| * Add comparison for PKeysManuel Schölling2015-04-161-0/+1
| |
* | Fixes for Native Client.Richard Diamond2015-04-181-0/+3
|/
* Add X509::public_key()Manuel Schölling2015-04-151-0/+1
|
* Fix rebase errorsManuel Schölling2015-04-061-1/+0
|
* Move connected_socket to its own crate and fix SSL_CTX_set_read_ahead()Manuel Schölling2015-04-061-0/+3
|
* Add DTLSv1 and DTLSv1.2 supportManuel Schölling2015-04-061-0/+4
|
* Add connect() support for UDP socketsManuel Schölling2015-04-061-0/+2
|
* Add SslContext::add_extra_chain_cert()Manuel Schölling2015-04-031-1/+9
|
* Add ability to load private keys from files and use raw keys and ↵Manuel Schölling2015-04-031-0/+6
| | | | certificates for SslContext
* Change SslVerifyMode to bitflags and add SSL_VERIFY_FAIL_IF_NO_PEER_CERTManuel Schölling2015-04-031-0/+1
| | | | | SslVerifyMode was changed to bitflags to allow for bitwise operations like (SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT).
* Fixup for betaAlex Crichton2015-04-021-0/+12
| | | | Add derive(Clone) and don't negate unsigned numbers
* rustup: changes to io::ErrorSean McArthur2015-04-021-1/+0
|
* Update to rust masterAlex Crichton2015-03-252-4/+5
|
* openssl-sys: Add TLS extension constantsMarko Lalic2015-03-231-0/+5
|
* openssl-sys: Add NPN functions and constantsMarko Lalic2015-03-231-0/+29
|
* Remove usage of unstable features in openssl-sysAlex Crichton2015-03-162-4/+3
|
* Fix warningsSteven Fackler2015-03-101-1/+1
|
* Merge pull request #172 from reaperhulk/add-ssl-ctx-set-get-optionsSteven Fackler2015-03-071-0/+17
|\ | | | | add support for SSL_CTX_set_options and SSL_CTX_get_options
| * add support for SSL_CTX_clear_options and use bitflagsPaul Kehrer2015-02-231-0/+5
| |
| * add support for SSL_CTX_set_options and SSL_CTX_get_optionsPaul Kehrer2015-02-221-0/+12
| | | | | | | | fixes #168
* | Cut down on unstable features in openssl-sysAlex Crichton2015-03-042-14/+15
| | | | | | | | | | * Move from `old_path` to `path` (leveraging the `fs` feature as well) * Move from `StaticMutex` to `Mutex<()>` as they're dynamically initialized