summaryrefslogtreecommitdiff
path: root/utils/imxtools/sbtools/crypto.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/imxtools/sbtools/crypto.h')
-rw-r--r--utils/imxtools/sbtools/crypto.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/imxtools/sbtools/crypto.h b/utils/imxtools/sbtools/crypto.h
index bdb94bb881..446891b7f2 100644
--- a/utils/imxtools/sbtools/crypto.h
+++ b/utils/imxtools/sbtools/crypto.h
@@ -77,11 +77,12 @@ int crypto_apply(
77uint32_t crc(uint8_t *data, int size); 77uint32_t crc(uint8_t *data, int size);
78uint32_t crc_continue(uint32_t previous_crc, uint8_t *data, int size); 78uint32_t crc_continue(uint32_t previous_crc, uint8_t *data, int size);
79 79
80#include "tomcrypt.h"
80/* sha1.c */ 81/* sha1.c */
81struct sha_1_params_t 82struct sha_1_params_t
82{ 83{
83 uint8_t hash[20]; /* final hash */ 84 uint8_t hash[20]; /* final hash */
84 void *object; /* pointer to CryptoPP::SHA1 object */ 85 hash_state state; /* libtomcrypt state */
85}; 86};
86 87
87void sha_1_init(struct sha_1_params_t *params); 88void sha_1_init(struct sha_1_params_t *params);