libssh  0.10.5
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
34#ifdef __cplusplus
35extern "C" {
36#endif
37
38SSH_PACKET_CALLBACK(ssh_packet_kexinit);
39
40int ssh_send_kex(ssh_session session);
41void ssh_list_kex(struct ssh_kex_struct *kex);
42int ssh_set_client_kex(ssh_session session);
43int ssh_kex_select_methods(ssh_session session);
44int ssh_verify_existing_algo(enum ssh_kex_types_e algo, const char *name);
45char *ssh_keep_known_algos(enum ssh_kex_types_e algo, const char *list);
46char *ssh_keep_fips_algos(enum ssh_kex_types_e algo, const char *list);
47char **ssh_space_tokenize(const char *chain);
48int ssh_get_kex1(ssh_session session);
49char *ssh_find_matching(const char *in_d, const char *what_d);
50const char *ssh_kex_get_supported_method(uint32_t algo);
51const char *ssh_kex_get_default_methods(uint32_t algo);
52const char *ssh_kex_get_fips_methods(uint32_t algo);
53const char *ssh_kex_get_description(uint32_t algo);
54char *ssh_client_select_hostkeys(ssh_session session);
55int ssh_send_rekex(ssh_session session);
56int server_set_kex(ssh_session session);
57int ssh_make_sessionid(ssh_session session);
58/* add data for the final cookie */
59int ssh_hashbufin_add_cookie(ssh_session session, unsigned char *cookie);
60int ssh_hashbufout_add_cookie(ssh_session session);
61int ssh_generate_session_keys(ssh_session session);
62
63#ifdef __cplusplus
64}
65#endif
66
67#endif /* KEX_H_ */
#define SSH_PACKET_CALLBACK(name)
This macro declares a packet callback handler.
Definition: callbacks.h:532
Definition: kex.h:29
Definition: session.h:121