aboutsummaryrefslogtreecommitdiff
path: root/src/hmac.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hmac.c')
-rw-r--r--src/hmac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hmac.c b/src/hmac.c
index 5175ee2..61440b8 100644
--- a/src/hmac.c
+++ b/src/hmac.c
@@ -12,7 +12,7 @@ hmac_sha1(uint8_t *restrict out,
{
uint8_t keyext[SHA1BLKSZ] = {0},
keyipad[SHA1BLKSZ],
- keyopad[SHA1BLKSZ];
+ keyopad[SHA1BLKSZ];
if (keysz > SHA1BLKSZ) {
sha1_t sha;