aboutsummaryrefslogtreecommitdiff
path: root/src/hmac.c
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-08-26 09:07:49 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-08-26 09:07:49 +0200
commit008417a47ca478705fe1a72174d8e0816dc3fcaa (patch)
tree67838de0e926b4294e663e5e6f09e59414ac7f9b /src/hmac.c
parentdd8c731b21e0d323fc86fc229c5ec1a1efd2ad67 (diff)
Align with spaces
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;