diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-02-04 21:09:06 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-02-04 21:09:06 +0000 |
commit | 769e8639c4b0acf8a5c177a94d5c0908bfb64b76 (patch) | |
tree | 5bb481c2005bf6258ec4526b50e28466a55b516d /tools/firmware-utils/src/sha1.h | |
parent | 595dd57f73ee2fba89081d207c329c4d6198345c (diff) | |
download | upstream-769e8639c4b0acf8a5c177a94d5c0908bfb64b76.tar.gz upstream-769e8639c4b0acf8a5c177a94d5c0908bfb64b76.tar.bz2 upstream-769e8639c4b0acf8a5c177a94d5c0908bfb64b76.zip |
[tools] firmware-utils/mkplanexfw: new firmware generation tool for the Planex MZK-W04NU device
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14410 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/firmware-utils/src/sha1.h')
-rw-r--r-- | tools/firmware-utils/src/sha1.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/tools/firmware-utils/src/sha1.h b/tools/firmware-utils/src/sha1.h new file mode 100644 index 0000000000..425267a306 --- /dev/null +++ b/tools/firmware-utils/src/sha1.h @@ -0,0 +1,57 @@ +#ifndef _SHA1_H +#define _SHA1_H + +#ifdef __cplusplus +extern "C" { +#endif + +#ifndef _STD_TYPES +#define _STD_TYPES + +#define uchar unsigned char +#define uint unsigned int +#define ulong unsigned long int + +#endif + +typedef struct +{ + ulong total[2]; + ulong state[5]; + uchar buffer[64]; +} +sha1_context; + +/* + * Core SHA-1 functions + */ +void sha1_starts( sha1_context *ctx ); +void sha1_update( sha1_context *ctx, uchar *input, uint length ); +void sha1_finish( sha1_context *ctx, uchar digest[20] ); + +/* + * Output SHA-1(file contents), returns 0 if successful. + */ +int sha1_file( char *filename, uchar digest[20] ); + +/* + * Output SHA-1(buf) + */ +void sha1_csum( uchar *buf, uint buflen, uchar digest[20] ); + +/* + * Output HMAC-SHA-1(key,buf) + */ +void sha1_hmac( uchar *key, uint keylen, uchar *buf, uint buflen, + uchar digest[20] ); + +/* + * Checkup routine + */ +int sha1_self_test( void ); + +#ifdef __cplusplus +} +#endif + +#endif /* sha1.h */ |