F´ Flight Software - C/C++ Documentation NASA-v1.6.0
A framework for building embedded system applications to NASA flight quality standards.
Loading...
Searching...
No Matches
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