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

/freebsd-10.1-release/crypto/openssh/
H A Dkexdhs.c49 BIGNUM *shared_secret = NULL, *dh_client_pub = NULL; local
81 if ((dh_client_pub = BN_new()) == NULL)
82 fatal("dh_client_pub == NULL");
83 packet_get_bignum2(dh_client_pub);
87 fprintf(stderr, "dh_client_pub= ");
88 BN_print_fp(stderr, dh_client_pub);
90 debug("bits %d", BN_num_bits(dh_client_pub));
99 if (!dh_pub_is_valid(dh, dh_client_pub))
104 if ((kout = DH_compute_key(kbuf, dh_client_pub, dh)) < 0)
125 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 47 milliseconds