aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hmac.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/hmac.rs b/hmac.rs
index fc48b33d..c7cad6a2 100644
--- a/hmac.rs
+++ b/hmac.rs
@@ -85,11 +85,3 @@ impl HMAC {
}
}
}
-
-fn main() {
- let mut h = HMAC(SHA512, ~[00u8]);
-
- h.update([00u8]);
-
- println!("{:?}", h.final())
-}