blob: 2ed92fcfcdc5a8b4fca2b5b401acd2d1c942c79e [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
Paul Bakker9e36f042013-06-30 14:34:05 +02002 * sha256sum demonstration program
Paul Bakker5121ce52009-01-03 21:22:43 +00003 *
Manuel Pégourié-Gonnarda658a402015-01-23 09:45:19 +00004 * Copyright (C) 2006-2013, ARM Limited, All Rights Reserved
Paul Bakkerb96f1542010-07-18 20:36:00 +00005 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +00006 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakkerb96f1542010-07-18 20:36:00 +00007 *
Paul Bakker5121ce52009-01-03 21:22:43 +00008 * 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é-Gonnardcef4ad22014-04-29 12:39:06 +020023#if !defined(POLARSSL_CONFIG_FILE)
Manuel Pégourié-Gonnardabd6e022013-09-20 13:30:43 +020024#include "polarssl/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020025#else
26#include POLARSSL_CONFIG_FILE
27#endif
Paul Bakker5121ce52009-01-03 21:22:43 +000028
Rich Evansf90016a2015-01-19 14:26:37 +000029#if defined(POLARSSL_PLATFORM_C)
30#include "polarssl/platform.h"
31#else
Rich Evans18b78c72015-02-11 14:06:19 +000032#include <stdio.h>
Rich Evansf90016a2015-01-19 14:26:37 +000033#define polarssl_fprintf fprintf
Rich Evans18b78c72015-02-11 14:06:19 +000034#define polarssl_printf printf
Rich Evansf90016a2015-01-19 14:26:37 +000035#endif
36
Rich Evans18b78c72015-02-11 14:06:19 +000037#if defined(POLARSSL_SHA256_C) && defined(POLARSSL_FS_IO)
Paul Bakkerd2681d82013-06-30 14:49:12 +020038#include "polarssl/sha256.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000039
Rich Evans18b78c72015-02-11 14:06:19 +000040#include <stdio.h>
41#include <string.h>
42#endif
43
Paul Bakker9e36f042013-06-30 14:34:05 +020044#if !defined(POLARSSL_SHA256_C) || !defined(POLARSSL_FS_IO)
Rich Evans85b05ec2015-02-12 11:37:29 +000045int main( void )
Paul Bakker5690efc2011-05-26 13:16:06 +000046{
Rich Evansf90016a2015-01-19 14:26:37 +000047 polarssl_printf("POLARSSL_SHA256_C and/or POLARSSL_FS_IO not defined.\n");
Paul Bakker5690efc2011-05-26 13:16:06 +000048 return( 0 );
49}
50#else
Paul Bakker9e36f042013-06-30 14:34:05 +020051static int sha256_wrapper( char *filename, unsigned char *sum )
Paul Bakker5121ce52009-01-03 21:22:43 +000052{
Paul Bakker9e36f042013-06-30 14:34:05 +020053 int ret = sha256_file( filename, sum, 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +000054
55 if( ret == 1 )
Rich Evansf90016a2015-01-19 14:26:37 +000056 polarssl_fprintf( stderr, "failed to open: %s\n", filename );
Paul Bakker5121ce52009-01-03 21:22:43 +000057
58 if( ret == 2 )
Rich Evansf90016a2015-01-19 14:26:37 +000059 polarssl_fprintf( stderr, "failed to read: %s\n", filename );
Paul Bakker5121ce52009-01-03 21:22:43 +000060
61 return( ret );
62}
63
Paul Bakker9e36f042013-06-30 14:34:05 +020064static int sha256_print( char *filename )
Paul Bakker5121ce52009-01-03 21:22:43 +000065{
66 int i;
67 unsigned char sum[32];
68
Paul Bakker9e36f042013-06-30 14:34:05 +020069 if( sha256_wrapper( filename, sum ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +000070 return( 1 );
71
72 for( i = 0; i < 32; i++ )
Rich Evansf90016a2015-01-19 14:26:37 +000073 polarssl_printf( "%02x", sum[i] );
Paul Bakker5121ce52009-01-03 21:22:43 +000074
Rich Evansf90016a2015-01-19 14:26:37 +000075 polarssl_printf( " %s\n", filename );
Paul Bakker5121ce52009-01-03 21:22:43 +000076 return( 0 );
77}
78
Paul Bakker9e36f042013-06-30 14:34:05 +020079static int sha256_check( char *filename )
Paul Bakker5121ce52009-01-03 21:22:43 +000080{
81 int i;
82 size_t n;
83 FILE *f;
84 int nb_err1, nb_err2;
85 int nb_tot1, nb_tot2;
86 unsigned char sum[32];
87 char buf[65], line[1024];
Manuel Pégourié-Gonnard291f9af2013-10-28 12:51:32 +010088 char diff;
Paul Bakker5121ce52009-01-03 21:22:43 +000089
90 if( ( f = fopen( filename, "rb" ) ) == NULL )
91 {
Rich Evansf90016a2015-01-19 14:26:37 +000092 polarssl_printf( "failed to open: %s\n", filename );
Paul Bakker5121ce52009-01-03 21:22:43 +000093 return( 1 );
94 }
95
96 nb_err1 = nb_err2 = 0;
97 nb_tot1 = nb_tot2 = 0;
98
99 memset( line, 0, sizeof( line ) );
100
101 n = sizeof( line );
102
Paul Bakker23986e52011-04-24 08:57:21 +0000103 while( fgets( line, (int) n - 1, f ) != NULL )
Paul Bakker5121ce52009-01-03 21:22:43 +0000104 {
105 n = strlen( line );
106
107 if( n < 68 )
108 continue;
109
110 if( line[64] != ' ' || line[65] != ' ' )
111 continue;
112
113 if( line[n - 1] == '\n' ) { n--; line[n] = '\0'; }
114 if( line[n - 1] == '\r' ) { n--; line[n] = '\0'; }
115
116 nb_tot1++;
117
Paul Bakker9e36f042013-06-30 14:34:05 +0200118 if( sha256_wrapper( line + 66, sum ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000119 {
120 nb_err1++;
121 continue;
122 }
123
124 nb_tot2++;
125
126 for( i = 0; i < 32; i++ )
127 sprintf( buf + i * 2, "%02x", sum[i] );
128
Manuel Pégourié-Gonnard291f9af2013-10-28 12:51:32 +0100129 /* Use constant-time buffer comparison */
130 diff = 0;
131 for( i = 0; i < 64; i++ )
132 diff |= line[i] ^ buf[i];
133
134 if( diff != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000135 {
136 nb_err2++;
Rich Evansf90016a2015-01-19 14:26:37 +0000137 polarssl_fprintf( stderr, "wrong checksum: %s\n", line + 66 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000138 }
139
140 n = sizeof( line );
141 }
142
Paul Bakker0c226102014-04-17 16:02:36 +0200143 fclose( f );
144
Paul Bakker5121ce52009-01-03 21:22:43 +0000145 if( nb_err1 != 0 )
146 {
Rich Evansf90016a2015-01-19 14:26:37 +0000147 polarssl_printf( "WARNING: %d (out of %d) input files could "
Paul Bakker5121ce52009-01-03 21:22:43 +0000148 "not be read\n", nb_err1, nb_tot1 );
149 }
150
151 if( nb_err2 != 0 )
152 {
Rich Evansf90016a2015-01-19 14:26:37 +0000153 polarssl_printf( "WARNING: %d (out of %d) computed checksums did "
Paul Bakker5121ce52009-01-03 21:22:43 +0000154 "not match\n", nb_err2, nb_tot2 );
155 }
156
157 return( nb_err1 != 0 || nb_err2 != 0 );
158}
159
160int main( int argc, char *argv[] )
161{
162 int ret, i;
163
164 if( argc == 1 )
165 {
Rich Evansf90016a2015-01-19 14:26:37 +0000166 polarssl_printf( "print mode: sha256sum <file> <file> ...\n" );
167 polarssl_printf( "check mode: sha256sum -c <checksum file>\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000168
Paul Bakkercce9d772011-11-18 14:26:47 +0000169#if defined(_WIN32)
Rich Evansf90016a2015-01-19 14:26:37 +0000170 polarssl_printf( "\n Press Enter to exit this program.\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000171 fflush( stdout ); getchar();
172#endif
173
174 return( 1 );
175 }
176
177 if( argc == 3 && strcmp( "-c", argv[1] ) == 0 )
Paul Bakker9e36f042013-06-30 14:34:05 +0200178 return( sha256_check( argv[2] ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000179
180 ret = 0;
181 for( i = 1; i < argc; i++ )
Paul Bakker9e36f042013-06-30 14:34:05 +0200182 ret |= sha256_print( argv[i] );
Paul Bakker5121ce52009-01-03 21:22:43 +0000183
184 return( ret );
185}
Paul Bakker9e36f042013-06-30 14:34:05 +0200186#endif /* POLARSSL_SHA256_C && POLARSSL_FS_IO */