diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-03-13 22:43:45 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-03-13 22:43:45 +0000 |
commit | 33dfbbeaec4a49e110f51f5d088015f1a8fb9075 (patch) | |
tree | 7f2e2359d05b63b1b0b59b61ae3fc154050fc486 /src/libstdcrypto/md5_update.c | |
parent | e450f6efc39e55e32264d2daded6c757af0f7527 (diff) | |
download | skalibs-33dfbbeaec4a49e110f51f5d088015f1a8fb9075.tar.xz |
More superflous headers cleanup and tiny fixes
Diffstat (limited to 'src/libstdcrypto/md5_update.c')
-rw-r--r-- | src/libstdcrypto/md5_update.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/libstdcrypto/md5_update.c b/src/libstdcrypto/md5_update.c index 1a88540..d61cd3f 100644 --- a/src/libstdcrypto/md5_update.c +++ b/src/libstdcrypto/md5_update.c @@ -1,15 +1,13 @@ /* ISC license. */ -#include <sys/types.h> -#include <stdint.h> +#include <string.h> #include <skalibs/uint32.h> -#include <skalibs/bytestr.h> #include <skalibs/md5.h> #include "md5-internal.h" void md5_update (MD5Schedule *ctx, char const *s, size_t len) { - uint32 t = ctx->bits[0] ; + uint32_t t = ctx->bits[0] ; if ((ctx->bits[0] = t + (len << 3)) < t) ctx->bits[1]++ ; ctx->bits[1] += len >> 29 ; @@ -20,20 +18,20 @@ void md5_update (MD5Schedule *ctx, char const *s, size_t len) t = 64 - t ; if (len < t) { - byte_copy((char *)p, len, s) ; + memcpy(p, s, len) ; return ; } - byte_copy((char *)p, t, s) ; + memcpy(p, s, t) ; uint32_little_endian((char *)ctx->in, 16) ; md5_transform(ctx->buf, (uint32_t *)ctx->in) ; s += t ; len -= t ; } while (len >= 64) { - byte_copy((char *)ctx->in, 64, s) ; + memcpy(ctx->in, s, 64) ; uint32_little_endian((char *)ctx->in, 16) ; md5_transform(ctx->buf, (uint32_t *)ctx->in) ; s += 64 ; len -= 64 ; } - byte_copy((char *)ctx->in, len, s) ; + memcpy(ctx->in, s, len) ; } |