cryptopals/include/helpers.h

8 lines
211 B
C
Raw Normal View History

2024-04-11 13:57:44 +00:00
#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