summaryrefslogtreecommitdiff
path: root/gl/hmac-md5.c
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2011-05-20 22:37:02 +0200
committerSimon Josefsson <simon@josefsson.org>2011-05-20 22:37:02 +0200
commit2bd4123f0ad3b694e8cfadc15d0fe1b16e36bc49 (patch)
treeafe003c7902bc7367b573967c6c217956bfdfa48 /gl/hmac-md5.c
parent14cdffd508a834f0df1935732455c40432ad36b0 (diff)
downloadgnutls-2bd4123f0ad3b694e8cfadc15d0fe1b16e36bc49.tar.gz
Update gnulib files.
Diffstat (limited to 'gl/hmac-md5.c')
-rw-r--r--gl/hmac-md5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gl/hmac-md5.c b/gl/hmac-md5.c
index 2c0edf5e86..eed16573ba 100644
--- a/gl/hmac-md5.c
+++ b/gl/hmac-md5.c
@@ -58,7 +58,7 @@ hmac_md5 (const void *key, size_t keylen,
md5_init_ctx (&inner);
memset (block, IPAD, sizeof (block));
- gl_memxor (block, key, keylen);
+ memxor (block, key, keylen);
md5_process_block (block, 64, &inner);
md5_process_bytes (in, inlen, &inner);
@@ -70,7 +70,7 @@ hmac_md5 (const void *key, size_t keylen,
md5_init_ctx (&outer);
memset (block, OPAD, sizeof (block));
- gl_memxor (block, key, keylen);
+ memxor (block, key, keylen);
md5_process_block (block, 64, &outer);
md5_process_bytes (innerhash, 16, &outer);