cryptopals/include/helpers.h

8 lines
211 B
C

#ifndef HELPERS_H
#define HELPERS_H
const unsigned char *one_byte_xor(const unsigned char *hex, size_t sz, char c);
const char *one_byte_xor_s(const unsigned char *hex, size_t sz, char c);
#endif // HELPERS_H