aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-08-20 22:07:44 +0200
committerThomas Voss <mail@thomasvoss.com> 2023-08-20 22:07:44 +0200
commit71f22e1ac610de3507bea726ae0d0db4c59e732d (patch)
tree673790dcb837b1811816fcbe0a17aa07907b646a
parent46cc5e686cfa03c04a7c630a253f87ae41da81bf (diff)
Remove debug print
-rw-r--r--main.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/main.c b/main.c
index 2226b52..de87cab 100644
--- a/main.c
+++ b/main.c
@@ -233,7 +233,6 @@ totp(struct totp_config conf, uint32_t *code)
/* SHA1 hashes are 20 bytes long */
off = mac[19] & 0x0F;
- printf("%d\n", off);
binc = (mac[off + 0] & 0x7F) << 24
| (mac[off + 1] & 0xFF) << 16
| (mac[off + 2] & 0xFF) << 8