aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys/src
Commit message (Collapse)AuthorAgeFilesLines
* Drop execute bit on fileSteven Fackler2014-11-281-0/+0
|
* Hasher: static contract checking, context reuseGleb Kozyrev2014-11-261-0/+2
| | | | | | | | | | | | - 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-261-2/+1
|
* sys: add SSL_get_peer_certificate()Cody P Schafer2014-11-241-0/+1
|
* sys: add some methods for dealing with x509 certsCody P Schafer2014-11-241-0/+6
|
* sys (and bn): make CRYPTO_free() take a *mut c_void insead of a *const c_charCody P Schafer2014-11-241-1/+1
| | | | | | | | | 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);
* Runtime falloutValerii Hiora2014-11-211-1/+2
|
* Baseline server supportCody P Schafer2014-11-191-0/+1
| | | | | Allows calling SSL_accept() instead of SSL_connect() when creating an SslStream.
* Move AES XTS support to a featureSteven Fackler2014-11-161-0/+2
|
* Add XTS-AES modeCorey Ford2014-11-141-0/+2
|
* New build systemValerii Hiora2014-11-133-0/+560