]> git.cryptolib.org Git - avr-crypto-lib.git/blob - memxor.h
bug fixed in md5-asm.S ( wrong values for length_b%512=505..511 )
[avr-crypto-lib.git] / 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
7 #endif