Searched refs:dh_client_pub (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10/OpenSSH-189/openssh/
H A Dkexdhs.c57 BIGNUM *shared_secret = NULL, *dh_client_pub = NULL; local
92 if ((dh_client_pub = BN_new()) == NULL)
93 fatal("dh_client_pub == NULL");
94 packet_get_bignum2(dh_client_pub);
98 fprintf(stderr, "dh_client_pub= ");
99 BN_print_fp(stderr, dh_client_pub);
101 debug("bits %d", BN_num_bits(dh_client_pub));
110 if (!dh_pub_is_valid(dh, dh_client_pub))
115 if ((kout = DH_compute_key(kbuf, dh_client_pub, dh)) < 0)
136 dh_client_pub,
[all...]
H A Dkexgexs.c60 BIGNUM *shared_secret = NULL, *dh_client_pub = NULL; local
129 if ((dh_client_pub = BN_new()) == NULL)
130 fatal("dh_client_pub == NULL");
131 packet_get_bignum2(dh_client_pub);
135 fprintf(stderr, "dh_client_pub= ");
136 BN_print_fp(stderr, dh_client_pub);
138 debug("bits %d", BN_num_bits(dh_client_pub));
147 if (!dh_pub_is_valid(dh, dh_client_pub))
152 if ((kout = DH_compute_key(kbuf, dh_client_pub, dh)) < 0)
179 dh_client_pub,
[all...]
H A Dkexgsss.c75 BIGNUM *dh_client_pub = NULL; local
141 if (dh_client_pub != NULL)
146 if ((dh_client_pub = BN_new()) == NULL)
147 fatal("dh_client_pub == NULL");
149 packet_get_bignum2(dh_client_pub);
171 if (dh_client_pub == NULL)
198 if (!dh_pub_is_valid(dh, dh_client_pub))
203 kout = DH_compute_key(kbuf, dh_client_pub, dh);
225 dh_client_pub, dh->pub_key, shared_secret,
238 dh_client_pub,
[all...]

Completed in 225 milliseconds