Home | History | Annotate | Download | only in openssh

Lines Matching defs:shared_secret

760     const struct sshbuf *shared_secret, u_char **keyp)
779 ssh_digest_update_buffer(hashctx, shared_secret) != 0 ||
798 ssh_digest_update_buffer(hashctx, shared_secret) != 0 ||
825 const struct sshbuf *shared_secret)
834 shared_secret, &keys[i])) != 0) {
855 struct sshbuf *shared_secret;
858 if ((shared_secret = sshbuf_new()) == NULL)
860 if ((r = sshbuf_put_bignum2(shared_secret, secret)) == 0)
861 r = kex_derive_keys(ssh, hash, hashlen, shared_secret);
862 sshbuf_free(shared_secret);