Searched refs:ssh_digest_ctx (Results 1 – 8 of 8) sorted by relevance
/external/openssh/ |
D | digest.h | 34 struct ssh_digest_ctx; 46 size_t ssh_digest_blocksize(struct ssh_digest_ctx *ctx); 49 int ssh_digest_copy_state(struct ssh_digest_ctx *from, 50 struct ssh_digest_ctx *to); 61 struct ssh_digest_ctx *ssh_digest_start(int alg); 62 int ssh_digest_update(struct ssh_digest_ctx *ctx, const void *m, size_t mlen) 64 int ssh_digest_update_buffer(struct ssh_digest_ctx *ctx, 66 int ssh_digest_final(struct ssh_digest_ctx *ctx, u_char *d, size_t dlen) 68 void ssh_digest_free(struct ssh_digest_ctx *ctx);
|
D | digest-libc.c | 43 struct ssh_digest_ctx { struct 162 ssh_digest_blocksize(struct ssh_digest_ctx *ctx) in ssh_digest_blocksize() 169 struct ssh_digest_ctx * 173 struct ssh_digest_ctx *ret; in ssh_digest_start() 187 ssh_digest_copy_state(struct ssh_digest_ctx *from, struct ssh_digest_ctx *to) in ssh_digest_copy_state() 198 ssh_digest_update(struct ssh_digest_ctx *ctx, const void *m, size_t mlen) in ssh_digest_update() 209 ssh_digest_update_buffer(struct ssh_digest_ctx *ctx, const struct sshbuf *b) in ssh_digest_update_buffer() 215 ssh_digest_final(struct ssh_digest_ctx *ctx, u_char *d, size_t dlen) in ssh_digest_final() 230 ssh_digest_free(struct ssh_digest_ctx *ctx) in ssh_digest_free() 248 struct ssh_digest_ctx *ctx = ssh_digest_start(alg); in ssh_digest_memory()
|
D | digest-openssl.c | 44 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() 131 ssh_digest_copy_state(struct ssh_digest_ctx *from, struct ssh_digest_ctx *to) in ssh_digest_copy_state() 142 ssh_digest_update(struct ssh_digest_ctx *ctx, const void *m, size_t mlen) in ssh_digest_update() 150 ssh_digest_update_buffer(struct ssh_digest_ctx *ctx, const struct sshbuf *b) in ssh_digest_update_buffer() 156 ssh_digest_final(struct ssh_digest_ctx *ctx, u_char *d, size_t dlen) in ssh_digest_final() 173 ssh_digest_free(struct ssh_digest_ctx *ctx) in ssh_digest_free()
|
D | hmac.c | 29 struct ssh_digest_ctx *ictx; 30 struct ssh_digest_ctx *octx; 31 struct ssh_digest_ctx *digest;
|
D | kex.c | 888 struct ssh_digest_ctx *hashctx = NULL; in derive_key() 997 struct ssh_digest_ctx *hashctx = NULL; in derive_ssh1_session_id()
|
D | sshconnect1.c | 176 struct ssh_digest_ctx *md; in respond_to_rsa_challenge()
|
D | ssh-agent.c | 303 struct ssh_digest_ctx *md; in process_authentication_challenge1()
|
D | ssh.c | 525 struct ssh_digest_ctx *md; in main()
|