aboutsummaryrefslogtreecommitdiff
path: root/src/bio/mod.rs
Commit message (Collapse)AuthorAgeFilesLines
* Move docs to this repo and auto buildSteven Fackler2015-02-071-105/+0
|
* Fix for IO changesSteven Fackler2015-01-281-3/+3
|
* Update to rust masterAlex Crichton2015-01-091-3/+3
|
* Handle recent breaking changesValerii Hiora2015-01-071-2/+2
| | | | | | | - macro reform - split of Show and String in formatter - CString reform - feature changes
* Correct init mutexes and locking functionValerii Hiora2014-10-141-0/+2
| | | | | | | | | `libcrypto` uses locks quite intensively even without SSL. So they should be initialized before everything else to function properly in multi-threaded apps in which SSL operations are absent or delayed. Finishes #79
* Minor doc fixes and feature mentionsValerii Hiora2014-10-081-1/+1
|
* Fixed incorrect EOF handling in MemBio, added error descriptionValerii Hiora2014-10-071-6/+22
| | | | 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.
* single `ffi` moduleValerii Hiora2014-09-301-17/+1
|
* Addressed review commentsValerii Hiora2014-09-281-6/+3
| | | | | | | | | | | | - fixed invalid file permissions - removed redundand mem::transmute - removed outdated FIXME's - removed redundand temporary variable - removed macro_export for internal macros
* Certificate/pkey generation & PEM exportValerii Hiora2014-09-261-0/+106
Required quite a lot of refactoring