Skip to content
Snippets Groups Projects
Commit d8b5730e authored by smjaejin's avatar smjaejin
Browse files

added ? to returned result

parent 4e1e3c55
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ use crypto_utils::hash::hash_with_counter
// we are searching in the years of experience colum
pub fn generateQueries(min: u32, max: u32) -> Result<Vec<String>> {
let mut queries = Vec::new();
let prf_key = load_from_file("prf.key");
let prf_key = load_from_file("prf.key")?;
for i in min..=max {
let scrambled = prf(&prf_key, i.to_string())?;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment