Blame include/libssh/knownhosts.h

Packit Service 31306d
/*
Packit Service 31306d
 * This file is part of the SSH Library
Packit Service 31306d
 *
Packit Service 31306d
 * Copyright (c) 20014 by Aris Adamantiadis <aris@badcode.be>
Packit Service 31306d
 *
Packit Service 31306d
 * This library is free software; you can redistribute it and/or
Packit Service 31306d
 * modify it under the terms of the GNU Lesser General Public
Packit Service 31306d
 * License as published by the Free Software Foundation; either
Packit Service 31306d
 * version 2.1 of the License.
Packit Service 31306d
 *
Packit Service 31306d
 * This library is distributed in the hope that it will be useful,
Packit Service 31306d
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 31306d
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 31306d
 * Lesser General Public License for more details.
Packit Service 31306d
 *
Packit Service 31306d
 * You should have received a copy of the GNU Lesser General Public
Packit Service 31306d
 * License along with this library; if not, write to the Free Software
Packit Service 31306d
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Packit Service 31306d
 */
Packit Service 31306d
Packit Service 31306d
Packit Service 31306d
#ifndef SSH_KNOWNHOSTS_H_
Packit Service 31306d
#define SSH_KNOWNHOSTS_H_
Packit Service 31306d
Packit Service 31306d
struct ssh_list *ssh_known_hosts_get_algorithms(ssh_session session);
Packit Service 31306d
char *ssh_known_hosts_get_algorithms_names(ssh_session session);
Packit Service 31306d
enum ssh_known_hosts_e
Packit Service 31306d
ssh_session_get_known_hosts_entry_file(ssh_session session,
Packit Service 31306d
                                       const char *filename,
Packit Service 31306d
                                       struct ssh_knownhosts_entry **pentry);
Packit Service 31306d
Packit Service 31306d
#endif /* SSH_KNOWNHOSTS_H_ */