+++ /dev/null
---- hmac-md5.c.orig 2011-05-21 09:36:49.076074063 +0200
-+++ hmac-md5.c 2011-05-21 09:37:51.911556830 +0200
-@@ -58,7 +58,7 @@
- md5_init_ctx (&inner);
-
- memset (block, IPAD, sizeof (block));
-- memxor (block, key, keylen);
-+ gl_memxor (block, key, keylen);
-
- md5_process_block (block, 64, &inner);
- md5_process_bytes (in, inlen, &inner);
-@@ -70,7 +70,7 @@
- md5_init_ctx (&outer);
-
- memset (block, OPAD, sizeof (block));
-- memxor (block, key, keylen);
-+ gl_memxor (block, key, keylen);
-
- md5_process_block (block, 64, &outer);
- md5_process_bytes (innerhash, 16, &outer);
+++ /dev/null
---- memxor.c.orig 2011-05-21 09:38:04.328055463 +0200
-+++ memxor.c 2011-05-21 09:38:14.369054337 +0200
-@@ -23,7 +23,7 @@
- #include "memxor.h"
-
- void *
--memxor (void *restrict dest, const void *restrict src, size_t n)
-+gl_memxor (void *restrict dest, const void *restrict src, size_t n)
- {
- char const *s = src;
- char *d = dest;
+++ /dev/null
---- memxor.h.orig 2011-05-21 09:38:26.471555934 +0200
-+++ memxor.h 2011-05-21 09:38:30.668058152 +0200
-@@ -26,6 +26,6 @@
- /* Compute binary exclusive OR of memory areas DEST and SRC, putting
- the result in DEST, of length N bytes. Returns a pointer to
- DEST. */
--void *memxor (void *restrict dest, const void *restrict src, size_t n);
-+void *gl_memxor (void *restrict dest, const void *restrict src, size_t n);
-
- #endif /* MEMXOR_H */