Home
last modified time | relevance | path

Searched refs:apr_md5_update (Results 1 – 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/apr-util/crypto/
HDapr_md5.c278 APU_DECLARE(apr_status_t) apr_md5_update(apr_md5_ctx_t *context, in apr_md5_update() function
305 apr_md5_update(context, PADDING, padLen); in apr_md5_final()
308 apr_md5_update(context, bits, 8); in apr_md5_final()
331 if ((rv = apr_md5_update(&ctx, input, inputLen)) != APR_SUCCESS) in apr_md5()
557 apr_md5_update(&ctx, pw, strlen(pw)); in apr_md5_encode()
562 apr_md5_update(&ctx, apr1_id, strlen(apr1_id)); in apr_md5_encode()
567 apr_md5_update(&ctx, sp, sl); in apr_md5_encode()
576 apr_md5_update(&ctx1, pw, strlen(pw)); in apr_md5_encode()
577 apr_md5_update(&ctx1, sp, sl); in apr_md5_encode()
578 apr_md5_update(&ctx1, pw, strlen(pw)); in apr_md5_encode()
[all …]
HDgetuuid.c91 apr_md5_update(&c, (const unsigned char *)&r, sizeof(r)); in get_random_info()
/freebsd-11-stable/contrib/subversion/subversion/libsvn_ra_svn/
HDcram.c101 apr_md5_update(&ctx, secret, sizeof(secret)); in compute_digest()
102 apr_md5_update(&ctx, challenge, strlen(challenge)); in compute_digest()
107 apr_md5_update(&ctx, secret, sizeof(secret)); in compute_digest()
108 apr_md5_update(&ctx, digest, APR_MD5_DIGESTSIZE); in compute_digest()
/freebsd-11-stable/contrib/apr-util/test/
HDtestmd5.c62 (apr_md5_update(&context, string, len) == 0)); in test_md5sum()
84 (apr_md5_update(&context, string, strlen(string)) == 0)); in test_md5sum_unaligned()
/freebsd-11-stable/contrib/apr-util/include/
HDapr_md5.h109 APU_DECLARE(apr_status_t) apr_md5_update(apr_md5_ctx_t *context,
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
HDchecksum.c610 apr_md5_update(ctx->apr_ctx, data, len); in svn_checksum_update()