diff options
Diffstat (limited to 'cc3200/util/hash.h')
| -rw-r--r-- | cc3200/util/hash.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cc3200/util/hash.h b/cc3200/util/hash.h new file mode 100644 index 000000000..d13158461 --- /dev/null +++ b/cc3200/util/hash.h @@ -0,0 +1,10 @@ +#ifndef HASH_H_ +#define HASH_H_ + +extern void HASH_Init (void); +extern void HASH_SHAMD5Start (uint32_t algo, uint32_t blocklen); +extern void HASH_SHAMD5Update (uint8_t *data, uint32_t datalen); +extern void HASH_SHAMD5Read (uint8_t *hash); + + +#endif /* HASH_H_ */ |
