Symbol: ssh_digest_update
crypto/openssh/digest-libc.c
215
return ssh_digest_update(ctx, sshbuf_ptr(b), sshbuf_len(b));
crypto/openssh/digest-libc.c
255
if (ssh_digest_update(ctx, m, mlen) != 0 ||
crypto/openssh/digest-openssl.c
155
return ssh_digest_update(ctx, sshbuf_ptr(b), sshbuf_len(b));
crypto/openssh/digest.h
61
int ssh_digest_update(struct ssh_digest_ctx *ctx, const void *m, size_t mlen)
crypto/openssh/hmac.c
117
ssh_digest_update(ctx->digest, ctx->buf, len) < 0 ||
crypto/openssh/hmac.c
80
if (ssh_digest_update(ctx->ictx, ctx->buf, ctx->buf_len) < 0)
crypto/openssh/hmac.c
84
if (ssh_digest_update(ctx->octx, ctx->buf, ctx->buf_len) < 0)
crypto/openssh/hmac.c
97
return ssh_digest_update(ctx->digest, m, mlen);
crypto/openssh/kex.c
1080
ssh_digest_update(hashctx, hash, hashlen) != 0 ||
crypto/openssh/kex.c
1081
ssh_digest_update(hashctx, &c, 1) != 0 ||
crypto/openssh/kex.c
1099
ssh_digest_update(hashctx, hash, hashlen) != 0 ||
crypto/openssh/kex.c
1100
ssh_digest_update(hashctx, digest, have) != 0 ||
crypto/openssh/readconf.c
364
ssh_digest_update(md, thishost, strlen(thishost)) < 0 ||
crypto/openssh/readconf.c
365
ssh_digest_update(md, host, strlen(host)) < 0 ||
crypto/openssh/readconf.c
366
ssh_digest_update(md, portstr, strlen(portstr)) < 0 ||
crypto/openssh/readconf.c
367
ssh_digest_update(md, user, strlen(user)) < 0 ||
crypto/openssh/readconf.c
368
ssh_digest_update(md, jumphost, strlen(jumphost)) < 0 ||
crypto/openssh/sshd.c
1310
if (ssh_digest_update(ctx, sshbuf_ptr(server_cfg),
crypto/openssh/sshd.c
1327
if (ssh_digest_update(ctx, sshbuf_ptr(buf), sshbuf_len(buf)) != 0)
crypto/openssh/sshsig.c
541
if ((r = ssh_digest_update(ctx, rbuf, (size_t)n)) != 0) {