summaryrefslogtreecommitdiff
path: root/sha1.h
diff options
context:
space:
mode:
authorMikhail Gusarov <dottedmag@dottedmag.net>2008-09-25 09:51:51 +0700
committerMikhail Gusarov <dottedmag@dottedmag.net>2008-09-25 09:51:51 +0700
commit38b914d68e911cd10004bf7fc690e82f9e8f3f96 (patch)
treef8cd063f9458f4e38459b42dc9be290118b47b04 /sha1.h
parent0cd14a8591c2ddb7fca5e576f6322a89097f5fc7 (diff)
downloadlibsha1-38b914d68e911cd10004bf7fc690e82f9e8f3f96.tar.gz
uint_32t type is replaced with uint32_t. uint_8/16/64t checks are removed as unused
Diffstat (limited to 'sha1.h')
-rw-r--r--sha1.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sha1.h b/sha1.h
index 951984c..bad2657 100644
--- a/sha1.h
+++ b/sha1.h
@@ -46,9 +46,9 @@ extern "C"
/* type to hold the SHA256 context */
typedef struct
-{ uint_32t count[2];
- uint_32t hash[5];
- uint_32t wbuf[16];
+{ uint32_t count[2];
+ uint32_t hash[5];
+ uint32_t wbuf[16];
} sha1_ctx;
/* Note that these prototypes are the same for both bit and */