[Title] Add packaging/nettle.spec to build nettle on OBS system
[external/nettle.git] / memxor.h
1 /* memxor.h
2  *
3  */
4
5 #ifndef NETTLE_MEMXOR_H_INCLUDED
6 #define NETTLE_MEMXOR_H_INCLUDED
7
8 #include <stdlib.h>
9 #include "nettle-types.h"
10
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14
15 uint8_t *memxor(uint8_t *dst, const uint8_t *src, size_t n);
16 uint8_t *memxor3(uint8_t *dst, const uint8_t *a, const uint8_t *b, size_t n);
17
18 #ifdef __cplusplus
19 }
20 #endif
21
22 #endif /* NETTLE_MEMXOR_H_INCLUDED */