Blame include/libssh/bignum.h

Packit Service 31306d
/*
Packit Service 31306d
 * This file is part of the SSH Library
Packit Service 31306d
 *
Packit Service 31306d
 * Copyright (c) 2014 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, or (at your option) any later version.
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
#ifndef BIGNUM_H_
Packit Service 31306d
#define BIGNUM_H_
Packit Service 31306d
Packit Service 31306d
#include "libssh/libcrypto.h"
Packit Service 31306d
#include "libssh/libgcrypt.h"
Packit Service 31306d
#include "libssh/libmbedcrypto.h"
Packit Service 31306d
Packit Service 31306d
bignum ssh_make_string_bn(ssh_string string);
Packit Service 31306d
ssh_string ssh_make_bignum_string(bignum num);
Packit Service 31306d
void ssh_print_bignum(const char *which, const_bignum num);
Packit Service 31306d
Packit Service 31306d
Packit Service 31306d
#endif /* BIGNUM_H_ */