diff options
| author | Tomoki Aonuma <[email protected]> | 2015-12-10 21:24:58 +0900 |
|---|---|---|
| committer | Tomoki Aonuma <[email protected]> | 2015-12-10 23:00:49 +0900 |
| commit | b6647cc61099eb99747168fb99abe29f88a87b34 (patch) | |
| tree | 62353a935963947a2a3ea39c865a2556d4ef1c58 /openssl-sys/Cargo.toml | |
| parent | Add PBKDF2-HMAC-SHA256 and -SHA512 functions (diff) | |
| download | rust-openssl-b6647cc61099eb99747168fb99abe29f88a87b34.tar.xz rust-openssl-b6647cc61099eb99747168fb99abe29f88a87b34.zip | |
Put pbkdf2_hmac_{256,512}() behind feature gate
PKCS5_PBKDF2_HMAC is not available with openssl-0.9.8 on os x
Diffstat (limited to 'openssl-sys/Cargo.toml')
| -rw-r--r-- | openssl-sys/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index 17e4647f..1e025d84 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -23,6 +23,7 @@ aes_ctr = [] npn = [] alpn = [] rfc5114 = [] +pkcs5_pbkdf2_hmac = [] [dependencies] libc = "0.2" |