aboutsummaryrefslogtreecommitdiff
path: root/src/ssl/tests.rs
Commit message (Collapse)AuthorAgeFilesLines
* Move docs to this repo and auto buildSteven Fackler2015-02-071-207/+0
|
* Rename crypto::hash::HashType -> TypeGleb Kozyrev2015-01-281-1/+1
| | | | | s/HashType/Type/ to follow the current Rust style. Import Type as HashType in modules where the name might be ambiguous. [breaking change]
* Fix for IO changesSteven Fackler2015-01-281-6/+6
|
* Handle recent breaking changesValerii Hiora2015-01-071-9/+9
| | | | | | | - macro reform - split of Show and String in formatter - CString reform - feature changes
* Update to rust masterAlex Crichton2014-12-231-10/+11
|
* Track master: proc removal, tuple indexingValerii Hiora2014-12-151-1/+1
|
* Make SslStream CloneableSteven Fackler2014-11-291-3/+13
| | | | Closes #6
* Replace an expired cert with a new one to make tests happyGleb Kozyrev2014-11-201-1/+1
|
* Fixed compilation errors related to namedspaced enumsJames Hurst2014-11-171-2/+4
|
* Update to work with change in TcpStream apiCody P Schafer2014-11-071-13/+13
|
* fail! -> panic!Michael Gehring2014-10-301-9/+9
|
* Cert loading from PEM & restructuring Valerii Hiora2014-10-151-51/+6
| | | | | | - Added cert loading - Extracted X509 tests
* BN_is_zero as a Rust functionValerii Hiora2014-10-091-13/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Although wrapping was relatively easy it basically meant that we depend on C compilation which becomes nightmare as soon as multiple platforms are used. I’ve got a huge pain once iOS was involved with 3 device archs and 2 simulator arches to support, not mentioning different set of include and lib flags. So there are 2 different approaches: - continue this way, maintaining all compilation issues like like managing correct flags, providing correct paths and so on. This way our Makefile will grow extremely fast and will actually take more efforts to maintain. - doing it pure Rust way. In this case we provide all the macros expansions inside our wrappers and there should be no other way to access raw data other than through those wrappers. It might be fragile if OpenSSL internal data structures will ever change, but I think (or hope) it is pretty stable and wouldn’t change anytime soon. This PR eliminates `BN_is_zero` at all from public API. It’s functionality is implemented in `BigNum.is_zero` and should be enough. Additional notes: 1. I’ve moved BIGNUM into `bn` so it could access fields directly and keep it as an opaque structure for everyone else 2. I’ve kept empty Makefile as I hope to land `feature-matrix` branch soon and I don’t like merging deleted/added file conflicts.
* Merge pull request #67 from vhbit/membio-eofSteven Fackler2014-10-071-1/+17
|\ | | | | Fixed incorrect EOF handling in MemBio, added error description
| * Fixed incorrect EOF handling in MemBio, added error descriptionValerii Hiora2014-10-071-1/+17
| | | | | | | | Actually, EOF wasn't handled at all and it caused `mem_bio.read_to_end()` to fail. Which in turn failed all `write_pem` implementations.
* | Merge pull request #71 from vhbit/path-izationSteven Fackler2014-10-071-4/+4
|\ \ | |/ |/| Using `Path`s instead of plain strings
| * Using `Path`s instead of plain stringsValerii Hiora2014-10-071-4/+4
| | | | | | Refs #45
* | Potential fix for #68Valerii Hiora2014-10-071-0/+13
|/
* Simpler setter for verify with dataValerii Hiora2014-10-041-1/+1
| | | | | There is no need in wrapping function in option as there is no sense in providing data without function.
* User-provided data in verifyValerii Hiora2014-10-021-2/+47
|
* Certificate/pkey generation & PEM exportValerii Hiora2014-09-261-1/+19
| | | Required quite a lot of refactoring
* Remove failing constructor wrappersSteven Fackler2014-09-051-22/+22
|
* Shift directory structureSteven Fackler2014-08-031-0/+160