Lines Matching defs:out
18 let mut out = Vec::with_capacity(len as usize);
23 // `EVP_EncodeBlock` will only write to not read from `out`.
25 let out_len = ffi::EVP_EncodeBlock(out.as_mut_ptr(), src.as_ptr(), src_len);
26 out.set_len(out_len as usize);
27 String::from_utf8_unchecked(out)
49 let mut out = Vec::with_capacity(len as usize);
55 // `EVP_DecodeBlock` will only write to not read from `out`.
58 out.as_mut_ptr(),
62 out.set_len(out_len as usize);
66 out.pop();
68 out.pop();
72 Ok(out)