Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Diffie-Hellman-Merkle key exchange (prime generation) |
| 3 | * |
Paul Bakker | 5da01ca | 2012-10-03 19:48:33 +0000 | [diff] [blame] | 4 | * Copyright (C) 2006-2012, Brainspark B.V. |
Paul Bakker | b96f154 | 2010-07-18 20:36:00 +0000 | [diff] [blame] | 5 | * |
| 6 | * This file is part of PolarSSL (http://www.polarssl.org) |
Paul Bakker | 84f12b7 | 2010-07-18 10:13:04 +0000 | [diff] [blame] | 7 | * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org> |
Paul Bakker | b96f154 | 2010-07-18 20:36:00 +0000 | [diff] [blame] | 8 | * |
Paul Bakker | 77b385e | 2009-07-28 17:23:11 +0000 | [diff] [blame] | 9 | * All rights reserved. |
Paul Bakker | e0ccd0a | 2009-01-04 16:27:10 +0000 | [diff] [blame] | 10 | * |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; either version 2 of the License, or |
| 14 | * (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along |
| 22 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 23 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 24 | */ |
| 25 | |
Manuel Pégourié-Gonnard | cef4ad2 | 2014-04-29 12:39:06 +0200 | [diff] [blame] | 26 | #if !defined(POLARSSL_CONFIG_FILE) |
Manuel Pégourié-Gonnard | abd6e02 | 2013-09-20 13:30:43 +0200 | [diff] [blame] | 27 | #include "polarssl/config.h" |
Manuel Pégourié-Gonnard | cef4ad2 | 2014-04-29 12:39:06 +0200 | [diff] [blame] | 28 | #else |
| 29 | #include POLARSSL_CONFIG_FILE |
| 30 | #endif |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 31 | |
| 32 | #include <stdio.h> |
| 33 | |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 34 | #include "polarssl/bignum.h" |
Paul Bakker | 508ad5a | 2011-12-04 17:09:26 +0000 | [diff] [blame] | 35 | #include "polarssl/entropy.h" |
| 36 | #include "polarssl/ctr_drbg.h" |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 37 | |
| 38 | /* |
| 39 | * Note: G = 4 is always a quadratic residue mod P, |
| 40 | * so it is a generator of order Q (with P = 2*Q+1). |
| 41 | */ |
| 42 | #define DH_P_SIZE 1024 |
| 43 | #define GENERATOR "4" |
| 44 | |
Paul Bakker | 508ad5a | 2011-12-04 17:09:26 +0000 | [diff] [blame] | 45 | #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_ENTROPY_C) || \ |
Manuel Pégourié-Gonnard | 92e5b59 | 2013-09-18 18:57:10 +0200 | [diff] [blame] | 46 | !defined(POLARSSL_FS_IO) || !defined(POLARSSL_CTR_DRBG_C) || \ |
| 47 | !defined(POLARSSL_GENPRIME) |
Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 48 | int main( int argc, char *argv[] ) |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 49 | { |
Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 50 | ((void) argc); |
| 51 | ((void) argv); |
| 52 | |
Paul Bakker | 508ad5a | 2011-12-04 17:09:26 +0000 | [diff] [blame] | 53 | printf("POLARSSL_BIGNUM_C and/or POLARSSL_ENTROPY_C and/or " |
Manuel Pégourié-Gonnard | 92e5b59 | 2013-09-18 18:57:10 +0200 | [diff] [blame] | 54 | "POLARSSL_FS_IO and/or POLARSSL_CTR_DRBG_C and/or " |
| 55 | "POLARSSL_GENPRIME not defined.\n"); |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 56 | return( 0 ); |
| 57 | } |
| 58 | #else |
Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 59 | int main( int argc, char *argv[] ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 60 | { |
| 61 | int ret = 1; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 62 | mpi G, P, Q; |
Paul Bakker | 508ad5a | 2011-12-04 17:09:26 +0000 | [diff] [blame] | 63 | entropy_context entropy; |
| 64 | ctr_drbg_context ctr_drbg; |
Paul Bakker | ef3f8c7 | 2013-06-24 13:01:08 +0200 | [diff] [blame] | 65 | const char *pers = "dh_genprime"; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 66 | FILE *fout; |
| 67 | |
Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 68 | ((void) argc); |
| 69 | ((void) argv); |
| 70 | |
Paul Bakker | 6c591fa | 2011-05-05 11:49:20 +0000 | [diff] [blame] | 71 | mpi_init( &G ); mpi_init( &P ); mpi_init( &Q ); |
Paul Bakker | 0c22610 | 2014-04-17 16:02:36 +0200 | [diff] [blame] | 72 | entropy_init( &entropy ); |
Paul Bakker | cbe3d0d | 2014-04-17 16:00:59 +0200 | [diff] [blame] | 73 | |
| 74 | if( ( ret = mpi_read_string( &G, 10, GENERATOR ) ) != 0 ) |
| 75 | { |
| 76 | printf( " failed\n ! mpi_read_string returned %d\n", ret ); |
| 77 | goto exit; |
| 78 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 79 | |
Paul Bakker | 5da01ca | 2012-10-03 19:48:33 +0000 | [diff] [blame] | 80 | printf( "\nWARNING: You should not generate and use your own DHM primes\n" ); |
| 81 | printf( " unless you are very certain of what you are doing!\n" ); |
| 82 | printf( " Failing to follow this instruction may result in\n" ); |
| 83 | printf( " weak security for your connections! Use the\n" ); |
| 84 | printf( " predefined DHM parameters from dhm.h instead!\n\n" ); |
| 85 | printf( "============================================================\n\n" ); |
| 86 | |
Manuel Pégourié-Gonnard | 5e1e611 | 2013-11-22 21:16:10 +0100 | [diff] [blame] | 87 | printf( " ! Generating large primes may take minutes!\n" ); |
| 88 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 89 | printf( "\n . Seeding the random number generator..." ); |
| 90 | fflush( stdout ); |
| 91 | |
Paul Bakker | 508ad5a | 2011-12-04 17:09:26 +0000 | [diff] [blame] | 92 | if( ( ret = ctr_drbg_init( &ctr_drbg, entropy_func, &entropy, |
Paul Bakker | ef3f8c7 | 2013-06-24 13:01:08 +0200 | [diff] [blame] | 93 | (const unsigned char *) pers, |
| 94 | strlen( pers ) ) ) != 0 ) |
Paul Bakker | 508ad5a | 2011-12-04 17:09:26 +0000 | [diff] [blame] | 95 | { |
| 96 | printf( " failed\n ! ctr_drbg_init returned %d\n", ret ); |
| 97 | goto exit; |
| 98 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 99 | |
| 100 | printf( " ok\n . Generating the modulus, please wait..." ); |
| 101 | fflush( stdout ); |
| 102 | |
| 103 | /* |
| 104 | * This can take a long time... |
| 105 | */ |
| 106 | if( ( ret = mpi_gen_prime( &P, DH_P_SIZE, 1, |
Paul Bakker | 508ad5a | 2011-12-04 17:09:26 +0000 | [diff] [blame] | 107 | ctr_drbg_random, &ctr_drbg ) ) != 0 ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 108 | { |
| 109 | printf( " failed\n ! mpi_gen_prime returned %d\n\n", ret ); |
| 110 | goto exit; |
| 111 | } |
| 112 | |
| 113 | printf( " ok\n . Verifying that Q = (P-1)/2 is prime..." ); |
| 114 | fflush( stdout ); |
| 115 | |
| 116 | if( ( ret = mpi_sub_int( &Q, &P, 1 ) ) != 0 ) |
| 117 | { |
| 118 | printf( " failed\n ! mpi_sub_int returned %d\n\n", ret ); |
| 119 | goto exit; |
| 120 | } |
| 121 | |
| 122 | if( ( ret = mpi_div_int( &Q, NULL, &Q, 2 ) ) != 0 ) |
| 123 | { |
| 124 | printf( " failed\n ! mpi_div_int returned %d\n\n", ret ); |
| 125 | goto exit; |
| 126 | } |
| 127 | |
Paul Bakker | 508ad5a | 2011-12-04 17:09:26 +0000 | [diff] [blame] | 128 | if( ( ret = mpi_is_prime( &Q, ctr_drbg_random, &ctr_drbg ) ) != 0 ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 129 | { |
| 130 | printf( " failed\n ! mpi_is_prime returned %d\n\n", ret ); |
| 131 | goto exit; |
| 132 | } |
| 133 | |
| 134 | printf( " ok\n . Exporting the value in dh_prime.txt..." ); |
| 135 | fflush( stdout ); |
| 136 | |
| 137 | if( ( fout = fopen( "dh_prime.txt", "wb+" ) ) == NULL ) |
| 138 | { |
| 139 | ret = 1; |
| 140 | printf( " failed\n ! Could not create dh_prime.txt\n\n" ); |
| 141 | goto exit; |
| 142 | } |
| 143 | |
| 144 | if( ( ret = mpi_write_file( "P = ", &P, 16, fout ) != 0 ) || |
| 145 | ( ret = mpi_write_file( "G = ", &G, 16, fout ) != 0 ) ) |
| 146 | { |
| 147 | printf( " failed\n ! mpi_write_file returned %d\n\n", ret ); |
| 148 | goto exit; |
| 149 | } |
| 150 | |
| 151 | printf( " ok\n\n" ); |
| 152 | fclose( fout ); |
| 153 | |
| 154 | exit: |
| 155 | |
Paul Bakker | 6c591fa | 2011-05-05 11:49:20 +0000 | [diff] [blame] | 156 | mpi_free( &G ); mpi_free( &P ); mpi_free( &Q ); |
Paul Bakker | a317a98 | 2014-06-18 16:44:11 +0200 | [diff] [blame^] | 157 | ctr_drbg_free( &ctr_drbg ); |
Paul Bakker | 1ffefac | 2013-09-28 15:23:03 +0200 | [diff] [blame] | 158 | entropy_free( &entropy ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 159 | |
Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 160 | #if defined(_WIN32) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 161 | printf( " Press Enter to exit this program.\n" ); |
| 162 | fflush( stdout ); getchar(); |
| 163 | #endif |
| 164 | |
| 165 | return( ret ); |
| 166 | } |
Paul Bakker | 508ad5a | 2011-12-04 17:09:26 +0000 | [diff] [blame] | 167 | #endif /* POLARSSL_BIGNUM_C && POLARSSL_ENTROPY_C && POLARSSL_FS_IO && |
Manuel Pégourié-Gonnard | 92e5b59 | 2013-09-18 18:57:10 +0200 | [diff] [blame] | 168 | POLARSSL_CTR_DRBG_C && POLARSSL_GENPRIME */ |