summaryrefslogtreecommitdiff
path: root/source4/lib/crypto/hmacmd5.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/crypto/hmacmd5.c')
-rw-r--r--source4/lib/crypto/hmacmd5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/crypto/hmacmd5.c b/source4/lib/crypto/hmacmd5.c
index 7635bf6a82..149a4b861c 100644
--- a/source4/lib/crypto/hmacmd5.c
+++ b/source4/lib/crypto/hmacmd5.c
@@ -32,11 +32,11 @@
_PUBLIC_ void hmac_md5_init_rfc2104(const uint8_t *key, int key_len, HMACMD5Context *ctx)
{
int i;
+ uint8_t tk[16];
/* if key is longer than 64 bytes reset it to key=MD5(key) */
if (key_len > 64)
{
- uint8_t tk[16];
struct MD5Context tctx;
MD5Init(&tctx);