/* * Copyright (C) 2001 Nikos Mavroyanopoulos * * This file is part of GNUTLS. * * GNUTLS is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * GNUTLS is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #include #include #include #include #include "../lib/defines.h" #include "../lib/gnutls_int.h" #include "../lib/gnutls_srp.h" #include "../lib/crypt.h" #include "../lib/x509_b64.h" #include "prime-gaa.h" MPI _gcry_generate_elg_prime( int mode, unsigned pbits, unsigned qbits, MPI g, MPI **ret_factors ); int main(int argc, char **argv) { gaainfo info; int size, i, qbits; MPI prime; uint8 * tmp; MPI g; if (gaa(argc, argv, &info) != -1) { fprintf(stderr, "Error in the arguments.\n"); return -1; } /* this is an emulation of Michael Wiener's table * bad emulation. */ qbits = 120 + ( ((info.bits/256)-1)*20 ); if( qbits & 1 ) /* better have a even one */ qbits++; g = mpi_new(16); prime = _gcry_generate_elg_prime( 0, info.bits, qbits, g, NULL); /* print generator */ size = 0; gcry_mpi_print(GCRYMPI_FMT_USG, NULL, &size, g); tmp = malloc(size); gcry_mpi_print(GCRYMPI_FMT_USG, tmp, &size, g); printf( "/* generator - %d bits */\n", gcry_mpi_get_nbits(g)); printf( "\nconst uint8 g[%d] = { ", size); for (i=0;i