aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Update rustPeter Atashian2015-01-061-2/+2
| | | | Signed-off-by: Peter Atashian <[email protected]>
* Merge remote-tracking branch 'upstream/master'Chris Cole2015-01-052-9/+25
|\
| * Fix for upstream changesSteven Fackler2015-01-042-9/+25
| |
* | Added use of ToCStr trait.Chris Cole2015-01-031-1/+1
| |
* | Merge remote-tracking branch 'upstream/master'Chris Cole2015-01-038-57/+69
|\|
| * Fix deprecation warningsSteven Fackler2015-01-036-28/+34
| |
| * Updated to master:Valerii Hiora2015-01-038-29/+35
| | | | | | | | | | | | - library stab issues - deriving -> derive - {mod} -> {self}
* | Added BN_add_word, BN_sub_word, BN_mul_word, BN_div_word.Chris Cole2015-01-021-6/+55
| | | | | | | | Removed BIGNUM_PTR struct.
* | Merge remote-tracking branch 'upstream/master'Chris Cole2015-01-022-31/+31
|\|
| * Array syntax falloutValerii Hiora2015-01-021-3/+3
| |
| * ssl: use std::ptr::Unique to fix for opt-in SyncCody P Schafer2014-12-291-28/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Modifies Ssl & SslContext. This removes the errors like: src/ssl/tests.rs:202:14: 202:27 error: the trait `core::kinds::Send` is not implemented for the type `*mut libc::types::common::c95::c_void` src/ssl/tests.rs:202 let _t = Thread::spawn(move || { ^~~~~~~~~~~~~ src/ssl/tests.rs:202:14: 202:27 note: the type `*mut libc::types::common::c95::c_void` must implement `core::kinds::Send` because it appears within the type `ssl::Ssl` We may want some locking around calls that do multiple operations on the underlying Ssl and SslContext objects, but this lets us preserve functionality for now.
* | Merge remote-tracking branch 'upstream/master'Chris Cole2014-12-238-45/+62
|\| | | | | | | | | Conflicts: openssl-sys/src/lib.rs
| * Update to rust masterAlex Crichton2014-12-233-14/+20
| |
| * Replaced now removed NativeMutex with StaticMutex, and fixed NegAaron Weiss2014-12-211-1/+1
| | | | | | | | implementation for BigNum.
| * Print unexpected error codesSteven Fackler2014-12-191-2/+2
| | | | | | | | This is breaking occaisionally but I can't repro it locally :(
| * Updated for language changes to macros.Aaron Weiss2014-12-193-6/+6
| |
| * Update to rust masterAlex Crichton2014-12-161-16/+16
| |
| * Track master: proc removal, tuple indexingValerii Hiora2014-12-152-2/+2
| |
| * Clean up Copy impls a bitSteven Fackler2014-12-111-2/+2
| |
| * Update to nightly: explicit Copy traitValerii Hiora2014-12-116-3/+14
| |
* | Added BigNum::{from_dec_str,from_hex_str}, BN_dec2bn, and BN_hex2bn.Chris Cole2014-12-141-2/+27
| |
* | Added BigNum::one().Chris Cole2014-12-111-0/+4
| |
* | Use "ffi" namespace.Chris Cole2014-12-101-1/+1
| |
* | Merge remote-tracking branch 'upstream/master'Chris Cole2014-12-103-5/+20
|\|
| * Add the openssl function prototype 'HMAC_CTX_cleanup'.Ummon2014-12-101-0/+8
| |
| * Speed up SslStream initialization a bitSteven Fackler2014-12-061-1/+8
| |
| * Fix doc test and stop doc uploadSteven Fackler2014-12-031-4/+4
| |
* | Added mod_word.Chris Cole2014-12-101-2/+0
| |
* | Merge remote-tracking branch 'upstream/master'Chris Cole2014-11-2919-993/+1601
|\| | | | | | | | | Conflicts: src/bn/mod.rs
| * Make SslStream CloneableSteven Fackler2014-11-292-7/+18
| | | | | | | | Closes #6
| * Add MaybeSslStreamSteven Fackler2014-11-281-1/+73
| |
| * Hasher: static contract checking, context reuseGleb Kozyrev2014-11-261-22/+63
| | | | | | | | | | | | | | | | | | | | | | | | - 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().
| * Sync is now part of the standard libraryAndor Uhlár2014-11-262-2/+1
| |
| * Allow access to the underlying streamSteven Fackler2014-11-251-0/+9
| | | | | | | | | | The use case here is to allow methods like `set_read_timeout` to be called.
| * Fix deprecation warningSteven Fackler2014-11-241-2/+1
| |
| * ssl: add get_peer_certificate()Cody P Schafer2014-11-241-1/+12
| |
| * sys (and bn): make CRYPTO_free() take a *mut c_void insead of a *const c_charCody P Schafer2014-11-241-2/+2
| | | | | | | | | | | | | | | | | | CRYPTO_free() ends up being used for a variety of types of data, not just c_char. And it essentially takes full ownership of the type, making *mut appropriate. With this change it also more closely (exactly) matches the C defintion: void CRYPTO_free(void *ptr);
| * Fix negative serials on generated certsValerii Hiora2014-11-211-1/+15
| | | | | | | | required for compatibility with Go crypto
| * Slice syntax fixGleb Kozyrev2014-11-201-1/+1
| |
| * Replace an expired cert with a new one to make tests happyGleb Kozyrev2014-11-202-2/+2
| |
| * Merge pull request #54 from jmesmon/serverSteven Fackler2014-11-191-13/+24
| |\ | | | | | | Server Support
| | * Baseline server supportCody P Schafer2014-11-191-13/+24
| | | | | | | | | | | | | | | Allows calling SSL_accept() instead of SSL_connect() when creating an SslStream.
| * | Fix test buildSteven Fackler2014-11-194-12/+12
| |/
| * Remove Zero and One implsSteven Fackler2014-11-171-20/+0
| |
| * Fixed compilation errors related to namedspaced enumsJames Hurst2014-11-179-116/+120
| |
| * Impl Error for SslErrorSteven Fackler2014-11-162-2/+23
| |
| * Move AES XTS support to a featureSteven Fackler2014-11-162-1/+8
| |
| * Add XTS-AES modeCorey Ford2014-11-141-0/+16
| |
| * New build systemValerii Hiora2014-11-132-484/+1
| |
| * Merge pull request #89 from pyrho/aes-256-cbc-decrypt-testSteven Fackler2014-11-101-0/+34
| |\ | | | | | | Aes 256 cbc decrypt test