]> git.cryptolib.org Git - avr-crypto-lib.git/blob - memxor/memxor.h
switch gcm-test from aes to aes-enconly
[avr-crypto-lib.git] / memxor / memxor.h
1 #ifndef MEMXOR_H_
2 #define MEMXOR_H_
3 #include <stdint.h>
4
5 void memxor(void *dest, const void *src, uint16_t n);
6 void memxor_P(void *dest, const void *src, uint16_t n);
7
8
9 #endif