diff options
| author | Benjamin Fry <[email protected]> | 2017-01-22 22:24:45 -0800 |
|---|---|---|
| committer | Benjamin Fry <[email protected]> | 2017-01-22 22:24:45 -0800 |
| commit | 225552b823dba58cc2d7f17f86d92e3dcedb3138 (patch) | |
| tree | c07cd74fdc73fd59fd84f9974c50b7318c8b9654 /openssl-sys/src/ossl110.rs | |
| parent | add some documentation (diff) | |
| parent | Merge pull request #550 from Keruspe/master (diff) | |
| download | rust-openssl-225552b823dba58cc2d7f17f86d92e3dcedb3138.tar.xz rust-openssl-225552b823dba58cc2d7f17f86d92e3dcedb3138.zip | |
Merge branch 'master' of github.com:sfackler/rust-openssl
Diffstat (limited to 'openssl-sys/src/ossl110.rs')
| -rw-r--r-- | openssl-sys/src/ossl110.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/openssl-sys/src/ossl110.rs b/openssl-sys/src/ossl110.rs index 925b0d8a..75c6253e 100644 --- a/openssl-sys/src/ossl110.rs +++ b/openssl-sys/src/ossl110.rs @@ -68,6 +68,9 @@ extern { pub fn CRYPTO_malloc(num: size_t, file: *const c_char, line: c_int) -> *mut c_void; pub fn CRYPTO_free(buf: *mut c_void, file: *const c_char, line: c_int); + pub fn EVP_chacha20() -> *const ::EVP_CIPHER; + pub fn EVP_chacha20_poly1305() -> *const ::EVP_CIPHER; + pub fn HMAC_CTX_new() -> *mut HMAC_CTX; pub fn HMAC_CTX_free(ctx: *mut HMAC_CTX); |