aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 7fe7e93..d2abe53 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -53,7 +53,6 @@ fn test_k_anon() {
}
struct Password {
- pw: String,
pub range: String,
pub rest: String,
}
@@ -63,7 +62,6 @@ impl Password {
let (range, rest) = to_k_anon(digest::digest(&digest::SHA1, &pw.as_bytes()));
Password {
- pw: String::from(pw),
range: range,
rest: rest,
}