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

/freebsd-10.0-release/crypto/openssh/
H A Dkexdhs.c53 BIGNUM *shared_secret = NULL, *dh_client_pub = NULL; local
85 if ((dh_client_pub = BN_new()) == NULL)
86 fatal("dh_client_pub == NULL");
87 packet_get_bignum2(dh_client_pub);
91 fprintf(stderr, "dh_client_pub= ");
92 BN_print_fp(stderr, dh_client_pub);
94 debug("bits %d", BN_num_bits(dh_client_pub));
103 if (!dh_pub_is_valid(dh, dh_client_pub))
108 if ((kout = DH_compute_key(kbuf, dh_client_pub, dh)) < 0)
129 dh_client_pub,
[all...]
H A Dkexgexs.c56 BIGNUM *shared_secret = NULL, *dh_client_pub = NULL; local
121 if ((dh_client_pub = BN_new()) == NULL)
122 fatal("dh_client_pub == NULL");
123 packet_get_bignum2(dh_client_pub);
127 fprintf(stderr, "dh_client_pub= ");
128 BN_print_fp(stderr, dh_client_pub);
130 debug("bits %d", BN_num_bits(dh_client_pub));
139 if (!dh_pub_is_valid(dh, dh_client_pub))
144 if ((kout = DH_compute_key(kbuf, dh_client_pub, dh)) < 0)
171 dh_client_pub,
[all...]

Completed in 58 milliseconds