Searched refs:kex (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-10.3-release/crypto/openssh/
H A Dkexgexc.c44 #include "kex.h"
60 struct kex *kex = ssh->kex; local
64 nbits = dh_estimate(kex->dh_need * 8);
66 kex->min = DH_GRP_MIN;
67 kex->max = DH_GRP_MAX;
68 kex->nbits = nbits;
70 kex->nbits = MIN(kex
95 struct kex *kex = ssh->kex; local
149 struct kex *kex = ssh->kex; local
[all...]
H A Dkexgexs.c43 #include "kex.h"
73 struct kex *kex = ssh->kex; local
83 kex->nbits = nbits;
84 kex->min = min;
85 kex->max = max;
91 if (kex->max < kex->min || kex
126 struct kex *kex = ssh->kex; local
[all...]
H A Dkexc25519c.c38 #include "kex.h"
52 struct kex *kex = ssh->kex; local
55 kexc25519_keygen(kex->c25519_client_key, kex->c25519_client_pubkey);
57 dump_digest("client private key:", kex->c25519_client_key,
58 sizeof(kex->c25519_client_key));
61 (r = sshpkt_put_string(ssh, kex->c25519_client_pubkey,
62 sizeof(kex
75 struct kex *kex = ssh->kex; local
[all...]
H A Dkexecdhs.c40 #include "kex.h"
64 struct kex *kex = ssh->kex; local
78 if ((server_key = EC_KEY_new_by_curve_name(kex->ec_nid)) == NULL) {
93 if (kex->load_host_public_key == NULL ||
94 kex->load_host_private_key == NULL) {
98 server_host_public = kex->load_host_public_key(kex->hostkey_type,
99 kex
[all...]
H A Dkexdhs.c41 #include "kex.h"
57 struct kex *kex = ssh->kex; local
61 switch (kex->kex_type) {
63 kex->dh = dh_new_group1();
66 kex->dh = dh_new_group14();
72 if (kex->dh == NULL) {
76 if ((r = dh_gen_key(kex->dh, kex
90 struct kex *kex = ssh->kex; local
[all...]
H A Dkexc25519s.c37 #include "kex.h"
58 struct kex *kex = ssh->kex; local
74 if (kex->load_host_public_key == NULL ||
75 kex->load_host_private_key == NULL) {
79 server_host_public = kex->load_host_public_key(kex->hostkey_type,
80 kex->hostkey_nid, ssh);
81 server_host_private = kex
[all...]
H A Dkexdhc.c42 #include "kex.h"
57 struct kex *kex = ssh->kex; local
61 switch (kex->kex_type) {
63 kex->dh = dh_new_group1();
66 kex->dh = dh_new_group14();
72 if (kex->dh == NULL) {
77 if ((r = dh_gen_key(kex->dh, kex
99 struct kex *kex = ssh->kex; local
[all...]
H A Dssh_api.c47 * stubs for the server side implementation of kex.
97 if ((r = kex_new(ssh, proposal, &ssh->kex)) != 0) {
101 ssh->kex->server = is_server;
104 ssh->kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
105 ssh->kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
106 ssh->kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
107 ssh->kex
398 struct kex *kex = ssh->kex; local
[all...]
H A Dkexecdhc.c42 #include "kex.h"
57 struct kex *kex = ssh->kex; local
63 if ((client_key = EC_KEY_new_by_curve_name(kex->ec_nid)) == NULL) {
84 kex->ec_client_key = client_key;
85 kex->ec_group = group;
86 client_key = NULL; /* owned by the kex */
101 struct kex *kex local
[all...]
H A Dkex.c1 /* $OpenBSD: kex.c,v 1.117 2016/02/08 10:57:07 djm Exp $ */
45 #include "kex.h"
165 debug3("kex names ok: [%s]", names);
278 /* extract kex init proposal strings */
284 /* first kex follows / reserved */
320 error("kex protocol error: type %d seq %u", type, seq);
362 if (ssh->kex->ext_info_c)
372 struct kex *kex = ssh->kex; local
411 struct kex *kex = ssh->kex; local
431 struct kex *kex = ssh->kex; local
461 struct kex *kex = ssh->kex; local
513 struct kex *kex; local
568 kex_free(struct kex *kex) argument
747 struct kex *kex = ssh->kex; local
863 struct kex *kex = ssh->kex; local
927 struct kex *kex = ssh->kex; local
[all...]
H A Dkex.h1 /* $OpenBSD: kex.h,v 1.76 2016/02/08 10:57:07 djm Exp $ */
123 struct kex { struct
152 int (*kex[KEX_MAX])(struct ssh *); member in struct:kex
153 /* kex specific state */
167 int kex_new(struct ssh *, char *[PROPOSAL_MAX], struct kex **);
170 void kex_free(struct kex *);
H A Dpacket.c78 #include "kex.h"
268 (ssh->state->rekeying || (ssh->kex != NULL && ssh->kex->done == 0));
987 /* move newkeys from kex to state */
988 if ((state->newkeys[mode] = ssh->kex->newkeys[mode]) == NULL)
990 ssh->kex->newkeys[mode] = NULL;
1053 if (ssh->kex == NULL || ssh_packet_is_rekeying(ssh))
2073 if (ssh && ssh->kex && ssh->kex->failed_choice) {
2077 ssh->kex
2436 kex_to_blob(struct sshbuf *m, struct kex *kex) argument
2636 struct kex *kex; local
[all...]
H A Dmonitor.h78 struct kex **m_pkex;
H A Dsshd.c116 #include "kex.h"
680 /* Store a pointer to the kex for later rekeying */
681 pmonitor->m_pkex = &active_state->kex;
2615 struct kex *kex; local
2645 kex = active_state->kex;
2647 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
2648 kex
[all...]
H A Dsshconnect2.c57 #include "kex.h"
161 struct kex *kex; local
205 kex = active_state->kex;
207 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
208 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
209 kex
[all...]
H A Dpacket.h40 struct kex;
57 struct kex *kex; member in struct:ssh
H A Dssh-keyscan.c39 #include "kex.h"
303 c->c_ssh->kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
304 c->c_ssh->kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
305 c->c_ssh->kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
306 c->c_ssh->kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
308 c->c_ssh->kex
[all...]
H A Dmonitor.c75 #include "kex.h"
710 * than the full kex structure...
1843 struct kex *kex; local
1852 if ((kex = ssh->kex) != NULL) {
1855 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
1856 kex->kex[KEX_DH_GRP14_SHA
[all...]
/freebsd-10.3-release/crypto/openssh/regress/unittests/
H A DMakefile3 SUBDIR= test_helper sshbuf sshkey bitmap kex hostkeys
/freebsd-10.3-release/crypto/openssh/regress/unittests/kex/
H A Dtest_kex.c63 while (!server->kex->done || !client->kex->done) {
76 ASSERT_INT_EQ(server->kex->done, 1);
77 ASSERT_INT_EQ(client->kex->done, 1);
81 do_kex_with_key(char *kex, int keytype, int bits) argument
100 if (kex != NULL)
101 kex_params.proposal[PROPOSAL_KEX_ALGS] = kex;
116 TEST_START("kex");
142 kex_free(server2->kex); /* XXX or should ssh_packet_set_state()? */
146 ASSERT_PTR_NE(server2->kex, NUL
179 do_kex(char *kex) argument
[all...]
/freebsd-10.3-release/crypto/openssh/regress/
H A Ddhgex.sh10 kexs=`${SSH} -Q kex | grep diffie-hellman-group-exchange`
16 kex="$1"; shift
19 echo "KexAlgorithms=$kex" >> $OBJ/sshd_proxy
22 opts="-oKexAlgorithms=$kex -oCiphers=$cipher"
26 verbose "$tid bits $bits $kex $cipher"
H A Dkextype.sh11 ALLKEX=`${SSH} -Q kex`
16 for k in `${SSH} -Q kex`; do
17 verbose "kex $k"
21 fail "ssh kex $k"
H A Drekey.sh40 for i in `${SSH} -Q kex`; do
58 for kex in `${SSH} -Q kex`; do
59 verbose "client rekey $c $kex"
60 ssh_data_rekeying "KexAlgorithms=$kex" -oRekeyLimit=256k -oCiphers=$c
H A DMakefile83 INTEROP_TESTS= putty-transfer putty-ciphers putty-kex conch-ciphers
219 $$V ${.OBJDIR}/unittests/kex/test_kex ; \
/freebsd-10.3-release/secure/lib/libssh/
H A DMakefile23 kex.c kexdh.c kexgex.c kexecdh.c kexc25519.c \

Completed in 112 milliseconds

12