diff options
| author | Steven Fackler <[email protected]> | 2015-12-15 19:30:57 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-12-15 19:30:57 -0800 |
| commit | 167008d24728a8ba0e0f988d4399a4a9e3acb29d (patch) | |
| tree | 9700535523641f5d8673d5869f8b82b4df623293 /openssl/Cargo.toml | |
| parent | Merge pull request #309 from Geal/master (diff) | |
| parent | Put pbkdf2_hmac_{256,512}() behind feature gate (diff) | |
| download | rust-openssl-167008d24728a8ba0e0f988d4399a4a9e3acb29d.tar.xz rust-openssl-167008d24728a8ba0e0f988d4399a4a9e3acb29d.zip | |
Merge pull request #320 from uasi/add-variations-of-pbkdf2
Add PBKDF2-HMAC-SHA256 and -SHA512 functions
Diffstat (limited to 'openssl/Cargo.toml')
| -rw-r--r-- | openssl/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index f77d8032..f3e9f5ce 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -23,6 +23,7 @@ npn = ["openssl-sys/npn"] alpn = ["openssl-sys/alpn"] rfc5114 = ["openssl-sys/rfc5114"] ecdh_auto = ["openssl-sys-extras/ecdh_auto"] +pkcs5_pbkdf2_hmac = ["openssl-sys/pkcs5_pbkdf2_hmac"] [dependencies] bitflags = ">= 0.2, < 0.4" |