diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-04-08 12:28:47 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-04-08 12:28:47 +0000 |
commit | 73ebb5709dc2a5aaee1e676a3c1b0bb7cebcd392 (patch) | |
tree | 5b90934904fa42b1b979b83bd223b3e94bf3676f /src/libstdcrypto/sha512_update.c | |
parent | 90767eae542f72b7069a3575bc55944cebc749b6 (diff) | |
download | skalibs-73ebb5709dc2a5aaee1e676a3c1b0bb7cebcd392.tar.xz |
- added str_nlen()
- various fixes for --enable-libc-replacements
Diffstat (limited to 'src/libstdcrypto/sha512_update.c')
-rw-r--r-- | src/libstdcrypto/sha512_update.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstdcrypto/sha512_update.c b/src/libstdcrypto/sha512_update.c index 4f66622..4c8029e 100644 --- a/src/libstdcrypto/sha512_update.c +++ b/src/libstdcrypto/sha512_update.c @@ -10,7 +10,7 @@ void sha512_update (SHA512Schedule *ctx, char const *buf, unsigned int len) ctx->len += len ; if (pad && len >= 128 - pad) { - byte_copy(ctx->buf + pad, 128 - pad, buf) ; + byte_copy((char *)ctx->buf + pad, 128 - pad, buf) ; buf += 128 - pad ; len -= 128 - pad ; pad = 0 ; sha512_transform(ctx, ctx->buf) ; } @@ -20,5 +20,5 @@ void sha512_update (SHA512Schedule *ctx, char const *buf, unsigned int len) sha512_transform(ctx, (unsigned char const *)buf) ; buf += 128 ; len -= 128 ; } - byte_copy(ctx->buf + pad, len, buf) ; + byte_copy((char *)ctx->buf + pad, len, buf) ; } |