hamming distance
All checks were successful
Test and Deploy / test (push) Successful in 12s
Test and Deploy / docs (push) Successful in 17s

This commit is contained in:
2024-05-04 11:35:54 -07:00
parent e622107f07
commit c81c8bfa3c
4 changed files with 35 additions and 0 deletions

View File

@ -13,4 +13,6 @@ const char *hex_to_str(const unsigned char *hex, size_t sz);
const unsigned char* repeating_key_xor(const unsigned char* s, size_t s_sz, const unsigned char* key, size_t k_sz);
const unsigned char *repeating_key_xor_s(const char* s, const char* key);
unsigned int hamming_distance(const char *a, const char *b);
#endif // LIBFLINT_CRYPTO_H