Files
fprime/Utils/Hash/HashConfig.hpp
Timothy Canham 6d9c4c2d06 Initial check-in
2017-06-16 08:25:38 -07:00

13 lines
323 B
C++

#ifndef UTILS_HASH_CONFIG_HPP
#define UTILS_HASH_CONFIG_HPP
//! Choose the hash implementation that you want to use
//! by including the implementation hash header that
//! you are interested in. Ie. This could look like:
//!
//! #include <Utils/Hash/openssl/SHA256.hpp>
//!
#include <Utils/Hash/libcrc/CRC32.hpp>
#endif