libssh  0.10.1
The SSH library
Loading...
Searching...
No Matches
kex.h
1/*
2 * This file is part of the SSH Library
3 *
4 * Copyright (c) 2009 by Aris Adamantiadis
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#ifndef KEX_H_
22#define KEX_H_
23
24#include "libssh/priv.h"
25#include "libssh/callbacks.h"
26
27#define SSH_KEX_METHODS 10
28
30 unsigned char cookie[16];
31 char *methods[SSH_KEX_METHODS];
32};
33
34SSH_PACKET_CALLBACK(ssh_packet_kexinit);
35
36int ssh_send_kex(ssh_session session, int server_kex);
37void ssh_list_kex(struct ssh_kex_struct *kex);
38int ssh_set_client_kex(ssh_session session);
39int ssh_kex_select_methods(ssh_session session);
40int ssh_verify_existing_algo(enum ssh_kex_types_e algo, const char *name);
41char *ssh_keep_known_algos(enum ssh_kex_types_e algo, const char *list);
42char *ssh_keep_fips_algos(enum ssh_kex_types_e algo, const char *list);
43char **ssh_space_tokenize(const char *chain);
44int ssh_get_kex1(ssh_session session);
45char *ssh_find_matching(const char *in_d, const char *what_d);
46const char *ssh_kex_get_supported_method(uint32_t algo);
47const char *ssh_kex_get_default_methods(uint32_t algo);
48const char *ssh_kex_get_fips_methods(uint32_t algo);
49const char *ssh_kex_get_description(uint32_t algo);
50char *ssh_client_select_hostkeys(ssh_session session);
51int ssh_send_rekex(ssh_session session);
52int server_set_kex(ssh_session session);
53int ssh_make_sessionid(ssh_session session);
54/* add data for the final cookie */
55int ssh_hashbufin_add_cookie(ssh_session session, unsigned char *cookie);
56int ssh_hashbufout_add_cookie(ssh_session session);
57int ssh_generate_session_keys(ssh_session session);
58
59#endif /* KEX_H_ */
#define SSH_PACKET_CALLBACK(name)
This macro declares a packet callback handler.
Definition: callbacks.h:530
Definition: kex.h:29
Definition: session.h:110