Symbol: ssh_digest_ctx
crypto/openssh/digest-libc.c
166
ssh_digest_blocksize(struct ssh_digest_ctx *ctx)
crypto/openssh/digest-libc.c
173
struct ssh_digest_ctx *
crypto/openssh/digest-libc.c
177
struct ssh_digest_ctx *ret;
crypto/openssh/digest-libc.c
191
ssh_digest_copy_state(struct ssh_digest_ctx *from, struct ssh_digest_ctx *to)
crypto/openssh/digest-libc.c
202
ssh_digest_update(struct ssh_digest_ctx *ctx, const void *m, size_t mlen)
crypto/openssh/digest-libc.c
213
ssh_digest_update_buffer(struct ssh_digest_ctx *ctx, const struct sshbuf *b)
crypto/openssh/digest-libc.c
219
ssh_digest_final(struct ssh_digest_ctx *ctx, u_char *d, size_t dlen)
crypto/openssh/digest-libc.c
234
ssh_digest_free(struct ssh_digest_ctx *ctx)
crypto/openssh/digest-libc.c
251
struct ssh_digest_ctx *ctx = ssh_digest_start(alg);
crypto/openssh/digest-openssl.c
108
ssh_digest_blocksize(struct ssh_digest_ctx *ctx)
crypto/openssh/digest-openssl.c
113
struct ssh_digest_ctx *
crypto/openssh/digest-openssl.c
117
struct ssh_digest_ctx *ret;
crypto/openssh/digest-openssl.c
134
ssh_digest_copy_state(struct ssh_digest_ctx *from, struct ssh_digest_ctx *to)
crypto/openssh/digest-openssl.c
145
ssh_digest_update(struct ssh_digest_ctx *ctx, const void *m, size_t mlen)
crypto/openssh/digest-openssl.c
153
ssh_digest_update_buffer(struct ssh_digest_ctx *ctx, const struct sshbuf *b)
crypto/openssh/digest-openssl.c
159
ssh_digest_final(struct ssh_digest_ctx *ctx, u_char *d, size_t dlen)
crypto/openssh/digest-openssl.c
176
ssh_digest_free(struct ssh_digest_ctx *ctx)
crypto/openssh/digest.h
33
struct ssh_digest_ctx;
crypto/openssh/digest.h
45
size_t ssh_digest_blocksize(struct ssh_digest_ctx *ctx);
crypto/openssh/digest.h
48
int ssh_digest_copy_state(struct ssh_digest_ctx *from,
crypto/openssh/digest.h
49
struct ssh_digest_ctx *to);
crypto/openssh/digest.h
60
struct ssh_digest_ctx *ssh_digest_start(int alg);
crypto/openssh/digest.h
61
int ssh_digest_update(struct ssh_digest_ctx *ctx, const void *m, size_t mlen)
crypto/openssh/digest.h
63
int ssh_digest_update_buffer(struct ssh_digest_ctx *ctx,
crypto/openssh/digest.h
65
int ssh_digest_final(struct ssh_digest_ctx *ctx, u_char *d, size_t dlen)
crypto/openssh/digest.h
67
void ssh_digest_free(struct ssh_digest_ctx *ctx);
crypto/openssh/hmac.c
31
struct ssh_digest_ctx *ictx;
crypto/openssh/hmac.c
32
struct ssh_digest_ctx *octx;
crypto/openssh/hmac.c
33
struct ssh_digest_ctx *digest;
crypto/openssh/kex.c
1065
struct ssh_digest_ctx *hashctx = NULL;
crypto/openssh/readconf.c
357
struct ssh_digest_ctx *md;
crypto/openssh/sshd.c
1122
static struct ssh_digest_ctx *ctx;
crypto/openssh/sshsig.c
505
struct ssh_digest_ctx *ctx = NULL;