Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Simple MPI demonstration program |
| 3 | * |
Paul Bakker | 84f12b7 | 2010-07-18 10:13:04 +0000 | [diff] [blame] | 4 | * Copyright (C) 2006-2010, 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 | |
| 26 | #ifndef _CRT_SECURE_NO_DEPRECATE |
| 27 | #define _CRT_SECURE_NO_DEPRECATE 1 |
| 28 | #endif |
| 29 | |
| 30 | #include <stdio.h> |
| 31 | |
Paul Bakker | 40e4694 | 2009-01-03 21:51:57 +0000 | [diff] [blame] | 32 | #include "polarssl/bignum.h" |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 33 | |
| 34 | int main( void ) |
| 35 | { |
| 36 | mpi E, P, Q, N, H, D, X, Y, Z; |
| 37 | |
| 38 | mpi_init( &E, &P, &Q, &N, &H, |
| 39 | &D, &X, &Y, &Z, NULL ); |
| 40 | |
| 41 | mpi_read_string( &P, 10, "2789" ); |
| 42 | mpi_read_string( &Q, 10, "3203" ); |
| 43 | mpi_read_string( &E, 10, "257" ); |
| 44 | mpi_mul_mpi( &N, &P, &Q ); |
| 45 | |
| 46 | printf( "\n Public key:\n\n" ); |
| 47 | mpi_write_file( " N = ", &N, 10, NULL ); |
| 48 | mpi_write_file( " E = ", &E, 10, NULL ); |
| 49 | |
| 50 | printf( "\n Private key:\n\n" ); |
| 51 | mpi_write_file( " P = ", &P, 10, NULL ); |
| 52 | mpi_write_file( " Q = ", &Q, 10, NULL ); |
| 53 | |
| 54 | mpi_sub_int( &P, &P, 1 ); |
| 55 | mpi_sub_int( &Q, &Q, 1 ); |
| 56 | mpi_mul_mpi( &H, &P, &Q ); |
| 57 | mpi_inv_mod( &D, &E, &H ); |
| 58 | |
| 59 | mpi_write_file( " D = E^-1 mod (P-1)*(Q-1) = ", |
| 60 | &D, 10, NULL ); |
| 61 | |
| 62 | mpi_read_string( &X, 10, "55555" ); |
| 63 | mpi_exp_mod( &Y, &X, &E, &N, NULL ); |
| 64 | mpi_exp_mod( &Z, &Y, &D, &N, NULL ); |
| 65 | |
| 66 | printf( "\n RSA operation:\n\n" ); |
| 67 | mpi_write_file( " X (plaintext) = ", &X, 10, NULL ); |
| 68 | mpi_write_file( " Y (ciphertext) = X^E mod N = ", &Y, 10, NULL ); |
| 69 | mpi_write_file( " Z (decrypted) = Y^D mod N = ", &Z, 10, NULL ); |
| 70 | printf( "\n" ); |
| 71 | |
| 72 | mpi_free( &Z, &Y, &X, &D, &H, |
| 73 | &N, &Q, &P, &E, NULL ); |
| 74 | |
| 75 | #ifdef WIN32 |
| 76 | printf( " Press Enter to exit this program.\n" ); |
| 77 | fflush( stdout ); getchar(); |
| 78 | #endif |
| 79 | |
| 80 | return( 0 ); |
| 81 | } |