F´ Flight Software - C/C++ Documentation  devel
A framework for building embedded system applications to NASA flight quality standards.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SHA256.hpp
Go to the documentation of this file.
1 #ifndef UTILS_SHA256_CONFIG_HPP
2 #define UTILS_SHA256_CONFIG_HPP
3 
4 // Include the sha library:
6 
9 #ifndef HASH_HANDLE_TYPE
10 #define HASH_HANDLE_TYPE SHA256_CTX
11 #endif
12 
15 #ifndef HASH_DIGEST_LENGTH
16 #define HASH_DIGEST_LENGTH (SHA256_DIGEST_LENGTH)
17 #endif
18 
22 #ifndef HASH_EXTENSION_STRING
23 #define HASH_EXTENSION_STRING (".SHA256")
24 #endif
25 
26 #endif