mirror of
https://github.com/nasa/fprime.git
synced 2026-04-12 05:19:03 -05:00
13 lines
323 B
C++
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
|