libssh 0.12.0
The SSH library
Loading...
Searching...
No Matches
kex-gss.h
1/*
2 * kex-gss.h - GSSAPI key exchange
3 *
4 * This file is part of the SSH Library
5 *
6 * Copyright (c) 2024 by Gauravsingh Sisodia <xaerru@gmail.com>
7 *
8 * The SSH Library is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Lesser General Public License as published by
10 * the Free Software Foundation; either version 2.1 of the License, or (at your
11 * option) any later version.
12 *
13 * The SSH Library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
16 * License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with the SSH Library; see the file COPYING. If not, write to
20 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
21 * MA 02111-1307, USA.
22 */
23#ifndef KEX_GSS_H_
24#define KEX_GSS_H_
25
26#include "config.h"
27#ifdef WITH_GSSAPI
28
29int ssh_client_gss_kex_init(ssh_session session);
30void ssh_server_gss_kex_init(ssh_session session);
31int ssh_server_gss_kex_process_init(ssh_session session, ssh_buffer packet);
32void ssh_client_gss_kex_remove_callbacks(ssh_session session);
33void ssh_client_gss_kex_remove_callback_hostkey(ssh_session session);
34
35#endif /* WITH_GSSAPI */
36#endif /* KEX_GSS_H_ */