aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys
Commit message (Collapse)AuthorAgeFilesLines
...
* | Added PEM_read_bio_RSAPrivateKey and PEM_read_bio_RSA_PUBKEYCyberunner232016-01-051-0/+3
|/
* Release v0.7.4Steven Fackler2015-12-182-3/+3
|
* Fix Cargo.toml to actually depend on gdi32-sys and user32-sysgentoo902015-12-181-4/+4
|
* Release v0.7.3Steven Fackler2015-12-172-3/+3
|
* Release v0.7.2Steven Fackler2015-12-152-4/+3
|
* Merge pull request #320 from uasi/add-variations-of-pbkdf2Steven Fackler2015-12-152-1/+6
|\ | | | | Add PBKDF2-HMAC-SHA256 and -SHA512 functions
| * Put pbkdf2_hmac_{256,512}() behind feature gateTomoki Aonuma2015-12-102-0/+2
| | | | | | | | PKCS5_PBKDF2_HMAC is not available with openssl-0.9.8 on os x
| * Add PBKDF2-HMAC-SHA256 and -SHA512 functionsTomoki Aonuma2015-12-101-1/+4
| |
* | Merge pull request #309 from Geal/masterSteven Fackler2015-12-151-1/+5
|\ \ | | | | | | Add support for Server Name indication (SNI) on the server's side
| * | Make shims for SSL_CTX_ctrl and SSL_CTX_callback_ctrl macro wrappersGeoffroy Couprie2015-11-251-3/+0
| | |
| * | implement get/set ssl contextGeoffroy Couprie2015-11-241-0/+1
| | |
| * | test SNI supportGeoffroy Couprie2015-11-241-0/+6
| | |
* | | Replace SslStream implementation!Steven Fackler2015-12-091-0/+2
| | |
* | | IT LIVESSteven Fackler2015-12-091-0/+3
| | |
* | | Custom BIO infrastructureSteven Fackler2015-12-081-0/+3
| | |
* | | Add BIO type definitionsSteven Fackler2015-12-071-3/+54
| |/ |/|
* | Release v0.7.1Steven Fackler2015-11-282-3/+3
| |
* | Avoid empty include paths (i.e. cc -I "" ) as they are not supported by GCC. ↵Maximilian Hristache2015-11-281-2/+5
|/ | | | Fix #311
* Fix a leak when using `EVP_PKEY_get1_RSA`.Overmind JIANG2015-11-181-0/+1
| | | | | | `EVP_PKEY_get1_RSA` returns a RSA structure with its reference count increased by 1 and therefore we need to call `RSA_free` after finishing using that value.
* Remove unecessary build dependencySteven Fackler2015-11-162-2/+0
|
* Release v0.7.0Steven Fackler2015-11-162-3/+3
|
* Mention why the windows deps are thereSteven Fackler2015-11-161-0/+1
|
* Don't depend on wildcard windows depsSteven Fackler2015-11-161-8/+9
|
* Merge pull request #297 from retep998/patch-1Steven Fackler2015-11-171-0/+12
|\ | | | | Explicitly depend on gdi32 and user32 on Windows
| * Explicitly depend on gdi32 and user32 on WindowsPeter Atashian2015-10-251-0/+12
| | | | | | Since openssl ends up depending on functions from these system libraries, depend on -sys crates that provide these system libraries.
* | Move HMAC_CTX_copy to sys-extrasSteven Fackler2015-11-161-1/+0
| |
* | Split stuff requiring a shim out to a separate crateSteven Fackler2015-11-165-342/+24
| |
* | Switch to libc 0.2Steven Fackler2015-11-161-1/+1
| |
* | Revert "Revert "Merge pull request #280 from ltratt/libressl_build""Steven Fackler2015-11-161-0/+1
| | | | | | | | This reverts commit ae3d0e36d71bb121c2fc1a75b3bc6d97f0e61480.
* | Provide public_decrypt, private_encrypt for PKEYThom May2015-10-281-0/+4
|/
* Nonblocking streams support.Jamie Turner2015-10-202-0/+6
|
* Expose RSA_generate_key_ex.Jimmy Cuadra2015-10-151-0/+1
|
* Release v0.6.7Steven Fackler2015-10-142-3/+3
|
* Merge pull request #288 from alexcrichton/includeSteven Fackler2015-10-141-0/+1
|\ | | | | Add metadata for the include dir of openssl
| * Add metadata for the include dir of opensslAlex Crichton2015-10-131-0/+1
| | | | | | | | | | If OpenSSL is installed at a nonstandard location dependencies on OpenSSL may want to know where it was found to be installed at.
* | Revert "Merge pull request #280 from ltratt/libressl_build"Steven Fackler2015-10-141-1/+0
| | | | | | | | | | This reverts commit aad933e5077b2c73e1f05d7314e442531a562bcf, reversing changes made to 60ee731408facdc8e3dfc000fdee2f1291fad664.
* | Update OpenSSL version checks to 1.0 numbers instead of 0.10 numbersLars Bergstrom2015-10-141-2/+2
|/
* Merge pull request #286 from jedisct1/use_certificate_chainSteven Fackler2015-10-131-0/+1
|\ | | | | Add set_certificate_chain_file()
| * Add set_certificate_chain_file()Frank Denis2015-10-121-0/+1
| | | | | | | | | | | | | | | | SSL_CTX_use_certificate_chain_file() is preferred over SSL_CTX_use_certificate_file(). It allows the use of complete certificate chains instead of loading only the first certificate in a PEM file.
* | Merge pull request #284 from bheart/cfb-modeSteven Fackler2015-10-121-0/+6
|\ \ | | | | | | AES CFB-mode feature
| * | AES CFB{1,8,128} mode supportWill Tange2015-10-111-0/+6
| | |
* | | Add certs.pem in cert probe listradare2015-10-121-4/+8
| |/ |/| | | | | It turns out that some distributions use /etc/ssl/certs.pem, which was causing some troubles. Related issue https://github.com/rust-lang/cargo/issues/1978#issuecomment-147515236
* | Merge pull request #280 from ltratt/libressl_buildSteven Fackler2015-10-101-0/+1
|\ \ | | | | | | Fix build on LibreSSL.
| * | Fix build on LibreSSL.Laurence Tratt2015-10-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | LibreSSL has deprecated SSLv3_method, so this commit makes that a compile-time feature. It also removes a test referencing SSL_OP_CISCO_ANYCONNECT, as the LibreSSL header says it is amongst "Obsolete flags kept for compatibility. No sane code should use them."
* | | Merge pull request #277 from nixpulvis/read_public_pemSteven Fackler2015-10-101-0/+2
|\ \ \ | |_|/ |/| | Add public key PEM read function.
| * | Add public key PEM read function.Nathan Lilienthal2015-10-011-0/+2
| |/
* | Release v0.6.6Steven Fackler2015-10-052-3/+3
| |
* | Clean up init stuffSteven Fackler2015-10-052-9/+8
| |
* | Set threadid_func on linux/osx (fixes #281)Manish Goregaokar2015-10-052-0/+29
|/
* Add SSL::set_ecdh_auto()Frank Denis2015-09-253-0/+10
| | | | | This sets automatic curve selection and enables ECDH support. Requires LibreSSL or OpenSSL >= 1.0.2, so behind a feature gate.