added memory handling section
[gnutls.git] / lib / gnutls_dh.h
blobb98d1ddee965236e0a732a6d91a5fc9906dd62c4
1 /*
2 * Copyright (C) 2000,2002 Nikos Mavroyanopoulos
4 * This file is part of GNUTLS.
6 * GNUTLS is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * GNUTLS 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
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
21 MPI gnutls_get_dh_params(GNUTLS_DH_PARAMS, MPI *ret_p, int bits);
22 MPI gnutls_calc_dh_secret( MPI *ret_x, MPI g, MPI prime );
23 MPI gnutls_calc_dh_key( MPI f, MPI x, MPI prime );
24 int _gnutls_dh_generate_prime(MPI *ret_g, MPI* ret_n, int bits);
25 void _gnutls_dh_clear_mpis(void);
26 int _gnutls_dh_calc_mpis(void);
27 MPI _gnutls_get_rnd_srp_params( MPI * ret_p, int bits);
29 extern _GNUTLS_DH_PARAMS _gnutls_dh_default_params;