Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Public key-based simple decryption program |
| 3 | * |
Manuel Pégourié-Gonnard | a658a40 | 2015-01-23 09:45:19 +0000 | [diff] [blame] | 4 | * Copyright (C) 2006-2013, ARM Limited, All Rights Reserved |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 5 | * |
Manuel Pégourié-Gonnard | 860b516 | 2015-01-28 17:12:07 +0000 | [diff] [blame] | 6 | * This file is part of mbed TLS (https://polarssl.org) |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 7 | * |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along |
| 19 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 21 | */ |
| 22 | |
Manuel Pégourié-Gonnard | cef4ad2 | 2014-04-29 12:39:06 +0200 | [diff] [blame] | 23 | #if !defined(POLARSSL_CONFIG_FILE) |
Manuel Pégourié-Gonnard | abd6e02 | 2013-09-20 13:30:43 +0200 | [diff] [blame] | 24 | #include "polarssl/config.h" |
Manuel Pégourié-Gonnard | cef4ad2 | 2014-04-29 12:39:06 +0200 | [diff] [blame] | 25 | #else |
| 26 | #include POLARSSL_CONFIG_FILE |
| 27 | #endif |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 28 | |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 29 | #if defined(POLARSSL_PLATFORM_C) |
| 30 | #include "polarssl/platform.h" |
| 31 | #else |
Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame^] | 32 | #include <stdio.h> |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 33 | #define polarssl_printf printf |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 34 | #endif |
| 35 | |
Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame^] | 36 | #if defined(POLARSSL_BIGNUM_C) && defined(POLARSSL_PK_PARSE_C) &&\ |
| 37 | defined(POLARSSL_FS_IO) && defined(POLARSSL_ENTROPY_C) &&\ |
| 38 | defined(POLARSSL_CTR_DRBG_C) |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 39 | #include "polarssl/error.h" |
| 40 | #include "polarssl/pk.h" |
| 41 | #include "polarssl/entropy.h" |
| 42 | #include "polarssl/ctr_drbg.h" |
| 43 | |
Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame^] | 44 | #include <stdio.h> |
| 45 | #include <string.h> |
| 46 | #endif |
| 47 | |
| 48 | |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 49 | #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_PK_PARSE_C) || \ |
| 50 | !defined(POLARSSL_FS_IO) || !defined(POLARSSL_ENTROPY_C) || \ |
| 51 | !defined(POLARSSL_CTR_DRBG_C) |
| 52 | int main( int argc, char *argv[] ) |
| 53 | { |
| 54 | ((void) argc); |
| 55 | ((void) argv); |
| 56 | |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 57 | polarssl_printf("POLARSSL_BIGNUM_C and/or POLARSSL_PK_PARSE_C and/or " |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 58 | "POLARSSL_FS_IO and/or POLARSSL_ENTROPY_C and/or " |
| 59 | "POLARSSL_CTR_DRBG_C not defined.\n"); |
| 60 | return( 0 ); |
| 61 | } |
| 62 | #else |
| 63 | int main( int argc, char *argv[] ) |
| 64 | { |
| 65 | FILE *f; |
| 66 | int ret, c; |
| 67 | size_t i, olen = 0; |
| 68 | pk_context pk; |
| 69 | entropy_context entropy; |
| 70 | ctr_drbg_context ctr_drbg; |
| 71 | unsigned char result[1024]; |
| 72 | unsigned char buf[512]; |
| 73 | const char *pers = "pk_decrypt"; |
| 74 | ((void) argv); |
| 75 | |
| 76 | memset(result, 0, sizeof( result ) ); |
| 77 | ret = 1; |
| 78 | |
| 79 | if( argc != 2 ) |
| 80 | { |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 81 | polarssl_printf( "usage: pk_decrypt <key_file>\n" ); |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 82 | |
| 83 | #if defined(_WIN32) |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 84 | polarssl_printf( "\n" ); |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 85 | #endif |
| 86 | |
| 87 | goto exit; |
| 88 | } |
| 89 | |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 90 | polarssl_printf( "\n . Seeding the random number generator..." ); |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 91 | fflush( stdout ); |
| 92 | |
| 93 | entropy_init( &entropy ); |
| 94 | if( ( ret = ctr_drbg_init( &ctr_drbg, entropy_func, &entropy, |
| 95 | (const unsigned char *) pers, |
| 96 | strlen( pers ) ) ) != 0 ) |
| 97 | { |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 98 | polarssl_printf( " failed\n ! ctr_drbg_init returned %d\n", ret ); |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 99 | goto exit; |
| 100 | } |
| 101 | |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 102 | polarssl_printf( "\n . Reading private key from '%s'", argv[1] ); |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 103 | fflush( stdout ); |
| 104 | |
| 105 | pk_init( &pk ); |
| 106 | |
| 107 | if( ( ret = pk_parse_keyfile( &pk, argv[1], "" ) ) != 0 ) |
| 108 | { |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 109 | polarssl_printf( " failed\n ! pk_parse_keyfile returned -0x%04x\n", -ret ); |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 110 | goto exit; |
| 111 | } |
| 112 | |
| 113 | /* |
| 114 | * Extract the RSA encrypted value from the text file |
| 115 | */ |
| 116 | ret = 1; |
| 117 | |
| 118 | if( ( f = fopen( "result-enc.txt", "rb" ) ) == NULL ) |
| 119 | { |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 120 | polarssl_printf( "\n ! Could not open %s\n\n", "result-enc.txt" ); |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 121 | goto exit; |
| 122 | } |
| 123 | |
| 124 | i = 0; |
| 125 | |
| 126 | while( fscanf( f, "%02X", &c ) > 0 && |
| 127 | i < (int) sizeof( buf ) ) |
| 128 | buf[i++] = (unsigned char) c; |
| 129 | |
| 130 | fclose( f ); |
| 131 | |
| 132 | /* |
| 133 | * Decrypt the encrypted RSA data and print the result. |
| 134 | */ |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 135 | polarssl_printf( "\n . Decrypting the encrypted data" ); |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 136 | fflush( stdout ); |
| 137 | |
| 138 | if( ( ret = pk_decrypt( &pk, buf, i, result, &olen, sizeof(result), |
| 139 | ctr_drbg_random, &ctr_drbg ) ) != 0 ) |
| 140 | { |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 141 | polarssl_printf( " failed\n ! pk_decrypt returned -0x%04x\n", -ret ); |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 142 | goto exit; |
| 143 | } |
| 144 | |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 145 | polarssl_printf( "\n . OK\n\n" ); |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 146 | |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 147 | polarssl_printf( "The decrypted result is: '%s'\n\n", result ); |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 148 | |
| 149 | ret = 0; |
| 150 | |
| 151 | exit: |
Paul Bakker | a317a98 | 2014-06-18 16:44:11 +0200 | [diff] [blame] | 152 | ctr_drbg_free( &ctr_drbg ); |
Paul Bakker | 1ffefac | 2013-09-28 15:23:03 +0200 | [diff] [blame] | 153 | entropy_free( &entropy ); |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 154 | |
Manuel Pégourié-Gonnard | 92e5b59 | 2013-09-18 18:57:10 +0200 | [diff] [blame] | 155 | #if defined(POLARSSL_ERROR_C) |
| 156 | polarssl_strerror( ret, (char *) buf, sizeof(buf) ); |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 157 | polarssl_printf( " ! Last error was: %s\n", buf ); |
Manuel Pégourié-Gonnard | 92e5b59 | 2013-09-18 18:57:10 +0200 | [diff] [blame] | 158 | #endif |
| 159 | |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 160 | #if defined(_WIN32) |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 161 | polarssl_printf( " + Press Enter to exit this program.\n" ); |
Paul Bakker | 940f9ce | 2013-09-18 15:34:57 +0200 | [diff] [blame] | 162 | fflush( stdout ); getchar(); |
| 163 | #endif |
| 164 | |
| 165 | return( ret ); |
| 166 | } |
| 167 | #endif /* POLARSSL_BIGNUM_C && POLARSSL_PK_PARSE_C && POLARSSL_FS_IO && |
| 168 | POLARSSL_ENTROPY_C && POLARSSL_CTR_DRBG_C */ |