From: bg <daniel.otte@rub.de>
Date: Sat, 19 Oct 2013 03:49:06 +0000 (+0200)
Subject: whitespace editing / typo correction
X-Git-Url: https://git.cryptolib.org/?a=commitdiff_plain;h=be0fb736ad08109eabef073bcc32c3fa1bda7a1b;p=labortage2013badge.git

whitespace editing / typo correction
---

diff --git a/firmware/hmac-sha1.c b/firmware/hmac-sha1.c
index d6d750d..e0c5892 100644
--- a/firmware/hmac-sha1.c
+++ b/firmware/hmac-sha1.c
@@ -89,10 +89,10 @@ void hmac_sha1_final(void *dest, hmac_sha1_ctx_t *s){
 #endif
 
 /*
- * keylength in bits!
+ * key length in bits!
  * message length in bits!
  */
-void hmac_sha1(void *dest, const void *key, uint16_t keylength_b, const void *msg, uint32_t msglength_b){ /* a one-shot*/
+void hmac_sha1(void *dest, const void *key, uint16_t keylength_b, const void *msg, uint32_t msglength_b){ /* a one-shot */
 	sha1_ctx_t s;
 	uint8_t i;
 	uint8_t buffer[SHA1_BLOCK_BYTES];