File indexing completed on 2025-01-18 10:02:15
0001
0002
0003
0004
0005 #ifndef NETTLE_MEMXOR_H_INCLUDED
0006 #define NETTLE_MEMXOR_H_INCLUDED
0007
0008 #include <stdlib.h>
0009
0010 #ifdef __cplusplus
0011 extern "C" {
0012 #endif
0013
0014
0015 #define memxor nettle_memxor
0016 #define memxor3 nettle_memxor3
0017
0018 void *memxor(void *dst, const void *src, size_t n);
0019 void *memxor3(void *dst, const void *a, const void *b, size_t n);
0020
0021 #ifdef __cplusplus
0022 }
0023 #endif
0024
0025 #endif