diff options
| author | Kevin Ballard <[email protected]> | 2013-10-19 17:47:49 -0700 |
|---|---|---|
| committer | Kevin Ballard <[email protected]> | 2013-10-19 17:47:49 -0700 |
| commit | 25e18fab13879348ee440aaf525b4f277b3c06a5 (patch) | |
| tree | 044d574df16c9ec8f9ba69cab72bdc9cbaeb47f3 /pkcs5.rs | |
| parent | Update to latest rust master (0.8-pre d2b0b11) (diff) | |
| download | rust-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.rs | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; } } |