diff options
| author | Kevin Ballard <[email protected]> | 2013-11-26 01:14:38 -0800 |
|---|---|---|
| committer | Kevin Ballard <[email protected]> | 2013-11-26 01:14:38 -0800 |
| commit | 9ea9c195e2c8f01616363a24385894e23cd8e813 (patch) | |
| tree | 26de89c58c9ec2d838dce36f645ad1a0c6916039 /pkcs5.rs | |
| parent | Update to latest rust master (0.9-pre 69e46f3) (diff) | |
| download | rust-openssl-9ea9c195e2c8f01616363a24385894e23cd8e813.tar.xz rust-openssl-9ea9c195e2c8f01616363a24385894e23cd8e813.zip | |
Update for latest master (0.9-pre b42c438)
Diffstat (limited to 'pkcs5.rs')
| -rw-r--r-- | pkcs5.rs | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -14,8 +14,6 @@ mod libcrypto { } /// Derives a key from a password and salt using the PBKDF2-HMAC-SHA1 algorithm. -#[fixed_stack_segment] -#[inline(never)] pub fn pbkdf2_hmac_sha1(pass: &str, salt: &[u8], iter: uint, keylen: uint) -> ~[u8] { assert!(iter >= 1u); |