diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-01-21 15:46:20 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-01-21 15:46:20 +0000 |
commit | 2746b131aa482ac17c94bc6b82e58dbcc1b752cf (patch) | |
tree | 87e50c57bc8458b0809c280ab5d00042d1102925 /src/libstdcrypto/sha256_final.c | |
parent | 05db4ba46ae1ca6143bb9b432d1e05e69eddd263 (diff) | |
download | skalibs-2746b131aa482ac17c94bc6b82e58dbcc1b752cf.tar.xz |
Types fix: librandom, libstdcrypto
Diffstat (limited to 'src/libstdcrypto/sha256_final.c')
-rw-r--r-- | src/libstdcrypto/sha256_final.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstdcrypto/sha256_final.c b/src/libstdcrypto/sha256_final.c index be0af2d..b981459 100644 --- a/src/libstdcrypto/sha256_final.c +++ b/src/libstdcrypto/sha256_final.c @@ -1,7 +1,7 @@ /* ISC license. */ +#include <stdint.h> #include <skalibs/bytestr.h> -#include <skalibs/uint32.h> #include <skalibs/sha256.h> #include "sha256-internal.h" @@ -9,7 +9,7 @@ void sha256_final (SHA256Schedule *ctx, char *digest) { register unsigned int i = 0 ; register unsigned char *p = (unsigned char *)digest ; - uint32 bits[2] = { ctx->bits[0], ctx->bits[1] } ; + uint32_t bits[2] = { ctx->bits[0], ctx->bits[1] } ; sha256_feed(ctx, 0x80) ; while (ctx->b != 56) sha256_feed(ctx, 0) ; |