summaryrefslogtreecommitdiff
path: root/src/libstdcrypto
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2015-04-08 12:28:47 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2015-04-08 12:28:47 +0000
commit73ebb5709dc2a5aaee1e676a3c1b0bb7cebcd392 (patch)
tree5b90934904fa42b1b979b83bd223b3e94bf3676f /src/libstdcrypto
parent90767eae542f72b7069a3575bc55944cebc749b6 (diff)
downloadskalibs-73ebb5709dc2a5aaee1e676a3c1b0bb7cebcd392.tar.xz
- added str_nlen()
- various fixes for --enable-libc-replacements
Diffstat (limited to 'src/libstdcrypto')
-rw-r--r--src/libstdcrypto/md5_final.c4
-rw-r--r--src/libstdcrypto/sha512_update.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/libstdcrypto/md5_final.c b/src/libstdcrypto/md5_final.c
index e89e075..1512ebc 100644
--- a/src/libstdcrypto/md5_final.c
+++ b/src/libstdcrypto/md5_final.c
@@ -21,8 +21,8 @@ void md5_final (MD5Schedule *ctx, char *digest /* 16 chars */)
else byte_zero(p, count - 8) ;
uint32_little_endian((char *)ctx->in, 14) ;
- byte_copy(ctx->in + 56, 4, (char *)&ctx->bits[0]) ;
- byte_copy(ctx->in + 60, 4, (char *)&ctx->bits[1]) ;
+ byte_copy((char *)ctx->in + 56, 4, (char *)&ctx->bits[0]) ;
+ byte_copy((char *)ctx->in + 60, 4, (char *)&ctx->bits[1]) ;
md5_transform(ctx->buf, (uint32 *)ctx->in) ;
uint32_little_endian((char *)ctx->buf, 4) ;
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) ;
}