aboutsummaryrefslogtreecommitdiff
path: root/pkcs5.rs
diff options
context:
space:
mode:
authorKevin Ballard <[email protected]>2013-10-19 17:47:49 -0700
committerKevin Ballard <[email protected]>2013-10-19 17:47:49 -0700
commit25e18fab13879348ee440aaf525b4f277b3c06a5 (patch)
tree044d574df16c9ec8f9ba69cab72bdc9cbaeb47f3 /pkcs5.rs
parentUpdate to latest rust master (0.8-pre d2b0b11) (diff)
downloadrust-openssl-25e18fab13879348ee440aaf525b4f277b3c06a5.tar.xz
rust-openssl-25e18fab13879348ee440aaf525b4f277b3c06a5.zip
Update to latest rust master (0.9-pre 69e46f3)
Diffstat (limited to 'pkcs5.rs')
-rw-r--r--pkcs5.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkcs5.rs b/pkcs5.rs
index f9e2a48d..1be74af9 100644
--- a/pkcs5.rs
+++ b/pkcs5.rs
@@ -6,10 +6,10 @@ mod libcrypto {
#[link_args = "-lcrypto"]
extern {
- fn PKCS5_PBKDF2_HMAC_SHA1(pass: *u8, passlen: c_int,
- salt: *u8, saltlen: c_int,
- iter: c_int, keylen: c_int,
- out: *mut u8) -> c_int;
+ pub fn PKCS5_PBKDF2_HMAC_SHA1(pass: *u8, passlen: c_int,
+ salt: *u8, saltlen: c_int,
+ iter: c_int, keylen: c_int,
+ out: *mut u8) -> c_int;
}
}