aboutsummaryrefslogtreecommitdiff
path: root/pkcs5.rs
diff options
context:
space:
mode:
authorKevin Ballard <[email protected]>2013-11-26 01:14:38 -0800
committerKevin Ballard <[email protected]>2013-11-26 01:14:38 -0800
commit9ea9c195e2c8f01616363a24385894e23cd8e813 (patch)
tree26de89c58c9ec2d838dce36f645ad1a0c6916039 /pkcs5.rs
parentUpdate to latest rust master (0.9-pre 69e46f3) (diff)
downloadrust-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.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkcs5.rs b/pkcs5.rs
index 1be74af9..3c5ba23b 100644
--- a/pkcs5.rs
+++ b/pkcs5.rs
@@ -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);