You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mishmash.hpp 330B

1234567891011121314
  1. // mishmash.hpp (c) 20190407 _M
  2. //
  3. #pragma once
  4. #include <string>
  5. #include <vector>
  6. namespace codedweller {
  7. uint32_t mishmash(const unsigned char* buffer, size_t length) noexcept;
  8. uint32_t mishmash(const std::string &s) noexcept;
  9. uint32_t mishmash(const std::vector<unsigned char>& v) noexcept;
  10. } // End namespace codedweller