aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Release v0.2.7v0.2.7Steven Fackler2014-12-212-3/+3
|
* Merge pull request #128 from aatxe/masterSteven Fackler2014-12-212-7/+9
|\ | | | | Fix openssl-sys.
| * Replaced now removed NativeMutex with StaticMutex, and fixed NegAaron Weiss2014-12-212-7/+9
|/ | | | implementation for BigNum.
* Print unexpected error codesSteven Fackler2014-12-191-2/+2
| | | | This is breaking occaisionally but I can't repro it locally :(
* Release v0.2.6v0.2.6Steven Fackler2014-12-192-3/+3
|
* Merge pull request #126 from aatxe/masterSteven Fackler2014-12-193-6/+6
|\ | | | | Updated for language changes to macros.
| * Updated for language changes to macros.Aaron Weiss2014-12-193-6/+6
|/
* Merge pull request #119 from glennw/android-static-linkingSteven Fackler2014-12-161-3/+8
|\ | | | | Use static linking on android, which simplifies deployment since loading...
| * Use static linking on android, which simplifies deployment since loading ↵Glenn Watson2014-12-121-3/+8
| | | | | | | | application specific shared libraries on android requires Java code or other hacks.
* | Release v0.2.5v0.2.5Steven Fackler2014-12-162-3/+3
| |
* | Merge pull request #125 from alexcrichton/updateSteven Fackler2014-12-161-16/+16
|\ \ | | | | | | Update to rust master
| * | Update to rust masterAlex Crichton2014-12-161-16/+16
|/ /
* | Merge pull request #115 from brunoqc/patch-1Steven Fackler2014-12-151-1/+1
|\ \ | | | | | | Add rustlib 64-bit path in README
| * | Add rustlib 64-bit path in READMEBruno Bigras2014-12-101-1/+1
| | |
* | | Release v0.2.4v0.2.4Steven Fackler2014-12-152-3/+3
| | |
* | | Merge pull request #122 from vhbit/proc_removalSteven Fackler2014-12-152-2/+2
|\ \ \ | | | | | | | | Track master: proc removal, tuple indexing
| * | | Track master: proc removal, tuple indexingValerii Hiora2014-12-152-2/+2
|/ / /
* | / Release v0.2.3v0.2.3Steven Fackler2014-12-110-0/+0
| |/ |/|
* | Clean up Copy impls a bitSteven Fackler2014-12-112-6/+10
| |
* | Merge pull request #118 from vhbit/oibit-fixSteven Fackler2014-12-117-3/+18
|\ \ | | | | | | Update to nightly: explicit Copy trait
| * | Update to nightly: explicit Copy traitValerii Hiora2014-12-117-3/+18
|/ /
* | Merge pull request #117 from Ummon/masterSteven Fackler2014-12-102-0/+9
|\ \ | |/ |/| Add the openssl function prototype 'HMAC_CTX_cleanup'.
| * Add the openssl function prototype 'HMAC_CTX_cleanup'.Ummon2014-12-102-0/+9
|/
* Merge pull request #114 from DiamondLovesYou/masterSteven Fackler2014-12-101-1/+1
|\ | | | | Don't forget to bump the openssl-sys dep version!
| * Don't forget to bump the openssl-sys dep version!Richard Diamond2014-12-101-1/+1
|/
* Merge pull request #113 from DiamondLovesYou/nacl-crossesSteven Fackler2014-12-103-4/+4
|\ | | | | Now that pkg-config 0.1.1 has been published, delegate bailout detection to pkg-config.
| * Now that pkg-config 0.1.1 has been published, delegate to bailout detection ↵Richard Diamond2014-12-093-4/+4
| | | | | | | | | | | | to pkg-config. Also bump version minors for publishing. :)
* | Merge pull request #108 from DiamondLovesYou/nacl-crossesSteven Fackler2014-12-093-0/+17
|\| | | | | Use locally built libreSSL if targeting NaCl instead of the host's versions.
| * Add a feature to openssl-sys to cause it to build a local copy of libressl forRichard Diamond2014-12-093-0/+17
| | | | | | | | | | use instead of whatever pkg-config says (which in the case of crosses, is almost certainly incorrect). This is for PNaCl.
* | Speed up SslStream initialization a bitSteven Fackler2014-12-061-1/+8
| |
* | Merge pull request #110 from Manishearth/patch-1Steven Fackler2014-12-051-6/+4
|\ \ | | | | | | Directly substitute $OPENSSL_PATH
| * | Directly substitute $OPENSSL_PATHManish Goregaokar2014-12-051-6/+4
|/ /
* | Merge pull request #109 from Manishearth/androidSteven Fackler2014-12-032-0/+15
|\ \ | | | | | | Allow passing in Android paths
| * | Allow passing in Android pathsManish Goregaokar2014-12-032-0/+15
| |/
* / Fix doc test and stop doc uploadSteven Fackler2014-12-032-13/+4
|/
* Release v0.2.2v0.2.2Steven Fackler2014-12-012-3/+3
|
* Make SslStream CloneableSteven Fackler2014-11-292-7/+18
| | | | Closes #6
* Release 0.2.1v0.2.1Steven Fackler2014-11-282-3/+3
|
* Add MaybeSslStreamSteven Fackler2014-11-281-1/+73
|
* Drop execute bit on fileSteven Fackler2014-11-281-0/+0
|
* Bump to 0.2v0.2.0Steven Fackler2014-11-272-37/+4
| | | | | | | | Also removed the PNaCl support. It hasn't worked anyway in a while since the pnacl-libressl-sys library doesn't have any of the FFI bindings and makes openssl's Cargo.toml a mess. This is a minor version bump since Hasher's API changed
* Fix windows dependenciesSteven Fackler2014-11-271-2/+2
|
* Add openssl-sys dependency on windowsSteven Fackler2014-11-271-0/+6
|
* Fix to pkg-config 0.1Steven Fackler2014-11-271-1/+1
|
* Merge pull request #99 from gkoz/context_reuseSteven Fackler2014-11-262-22/+65
|\ | | | | Hasher: static contract checking, context reuse
| * Hasher: static contract checking, context reuseGleb Kozyrev2014-11-262-22/+65
|/ | | | | | | | | | | | - Store EVP_MD_CTX in a separate struct. - Add with_context() constructor that uses an existing context. - Switch to EVP_Digest(Init|Final)_ex for efficient context reuse. - Make update() borrow &mut self. - Make finalize() consume self. Add finalize_reuse() that also returns the context which can be passed to from_context() constructor for reuse. These changes let the type system prevent illegal calls to update() and finalize().
* Bump to 0.1.1v0.1.1Steven Fackler2014-11-262-10/+10
|
* Merge pull request #105 from andor44/masterSteven Fackler2014-11-263-4/+2
|\ | | | | Sync is now part of the standard library
| * Sync is now part of the standard libraryAndor Uhlár2014-11-263-4/+2
|/
* Bump to 0.1.0v0.1.0Steven Fackler2014-11-252-10/+10
|