Searched refs:ssh_digest_ctx (Results 1 – 8 of 8) sorted by relevance
/external/openssh/ |
D | digest.h | 33 struct ssh_digest_ctx; 45 size_t ssh_digest_blocksize(struct ssh_digest_ctx *ctx); 48 int ssh_digest_copy_state(struct ssh_digest_ctx *from, 49 struct ssh_digest_ctx *to); 60 struct ssh_digest_ctx *ssh_digest_start(int alg); 61 int ssh_digest_update(struct ssh_digest_ctx *ctx, const void *m, size_t mlen) 63 int ssh_digest_update_buffer(struct ssh_digest_ctx *ctx, 65 int ssh_digest_final(struct ssh_digest_ctx *ctx, u_char *d, size_t dlen) 67 void ssh_digest_free(struct ssh_digest_ctx *ctx);
|
D | digest-libc.c | 47 struct ssh_digest_ctx { struct 156 ssh_digest_blocksize(struct ssh_digest_ctx *ctx) in ssh_digest_blocksize() 163 struct ssh_digest_ctx * 167 struct ssh_digest_ctx *ret; in ssh_digest_start() 181 ssh_digest_copy_state(struct ssh_digest_ctx *from, struct ssh_digest_ctx *to) in ssh_digest_copy_state() 192 ssh_digest_update(struct ssh_digest_ctx *ctx, const void *m, size_t mlen) in ssh_digest_update() 203 ssh_digest_update_buffer(struct ssh_digest_ctx *ctx, const struct sshbuf *b) in ssh_digest_update_buffer() 209 ssh_digest_final(struct ssh_digest_ctx *ctx, u_char *d, size_t dlen) in ssh_digest_final() 224 ssh_digest_free(struct ssh_digest_ctx *ctx) in ssh_digest_free() 241 struct ssh_digest_ctx *ctx = ssh_digest_start(alg); in ssh_digest_memory()
|
D | digest-openssl.c | 45 struct ssh_digest_ctx { struct 108 ssh_digest_blocksize(struct ssh_digest_ctx *ctx) in ssh_digest_blocksize() 113 struct ssh_digest_ctx * 117 struct ssh_digest_ctx *ret; in ssh_digest_start() 134 ssh_digest_copy_state(struct ssh_digest_ctx *from, struct ssh_digest_ctx *to) in ssh_digest_copy_state() 145 ssh_digest_update(struct ssh_digest_ctx *ctx, const void *m, size_t mlen) in ssh_digest_update() 153 ssh_digest_update_buffer(struct ssh_digest_ctx *ctx, const struct sshbuf *b) in ssh_digest_update_buffer() 159 ssh_digest_final(struct ssh_digest_ctx *ctx, u_char *d, size_t dlen) in ssh_digest_final() 176 ssh_digest_free(struct ssh_digest_ctx *ctx) in ssh_digest_free()
|
D | hmac.c | 31 struct ssh_digest_ctx *ictx; 32 struct ssh_digest_ctx *octx; 33 struct ssh_digest_ctx *digest;
|
D | sshsig.c | 494 struct ssh_digest_ctx *ctx; in hash_file()
|
D | kex.c | 998 struct ssh_digest_ctx *hashctx = NULL; in derive_key()
|
D | sshd.c | 1439 static struct ssh_digest_ctx *ctx;
|
D | readconf.c | 331 struct ssh_digest_ctx *md; in ssh_connection_hash()
|