blob: ec824c9eb18f1f9053187133560c503d3ffda21d [file] [log] [blame]
Paul Bakker4593aea2009-02-09 22:32:35 +00001/*
2 * SSL certificate functionality tests
3 *
Paul Bakkercce9d772011-11-18 14:26:47 +00004 * Copyright (C) 2006-2011, Brainspark B.V.
Paul Bakkerb96f1542010-07-18 20:36:00 +00005 *
6 * This file is part of PolarSSL (http://www.polarssl.org)
Paul Bakker84f12b72010-07-18 10:13:04 +00007 * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
Paul Bakkerb96f1542010-07-18 20:36:00 +00008 *
Paul Bakker77b385e2009-07-28 17:23:11 +00009 * All rights reserved.
Paul Bakker4593aea2009-02-09 22:32:35 +000010 *
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 <string.h>
31#include <stdio.h>
32
Paul Bakker5690efc2011-05-26 13:16:06 +000033#include "polarssl/config.h"
34
Paul Bakker4593aea2009-02-09 22:32:35 +000035#include "polarssl/certs.h"
36#include "polarssl/x509.h"
37
Paul Bakkerd98030e2009-05-02 15:13:40 +000038#if defined _MSC_VER && !defined snprintf
39#define snprintf _snprintf
40#endif
41
Paul Bakker40ea7de2009-05-03 10:18:48 +000042#define MAX_CLIENT_CERTS 8
Paul Bakker4593aea2009-02-09 22:32:35 +000043
Paul Bakkeref3f8c72013-06-24 13:01:08 +020044const char *client_certificates[MAX_CLIENT_CERTS] =
Paul Bakker4593aea2009-02-09 22:32:35 +000045{
Paul Bakkerd98030e2009-05-02 15:13:40 +000046 "client1.crt",
47 "client2.crt",
Paul Bakker40ea7de2009-05-03 10:18:48 +000048 "server1.crt",
49 "server2.crt",
Paul Bakkerd98030e2009-05-02 15:13:40 +000050 "cert_sha224.crt",
51 "cert_sha256.crt",
52 "cert_sha384.crt",
53 "cert_sha512.crt"
Paul Bakker4593aea2009-02-09 22:32:35 +000054};
55
Paul Bakkeref3f8c72013-06-24 13:01:08 +020056const char *client_private_keys[MAX_CLIENT_CERTS] =
Paul Bakkera1d3e5f2009-03-28 17:30:26 +000057{
Paul Bakkerd98030e2009-05-02 15:13:40 +000058 "client1.key",
59 "client2.key",
Paul Bakker40ea7de2009-05-03 10:18:48 +000060 "server1.key",
61 "server2.key",
Paul Bakkerf17ed282011-02-09 17:10:48 +000062 "cert_digest.key",
63 "cert_digest.key",
64 "cert_digest.key",
65 "cert_digest.key"
Paul Bakkera1d3e5f2009-03-28 17:30:26 +000066};
67
Paul Bakker5690efc2011-05-26 13:16:06 +000068#if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_RSA_C) || \
69 !defined(POLARSSL_X509_PARSE_C) || !defined(POLARSSL_FS_IO)
Paul Bakkercce9d772011-11-18 14:26:47 +000070int main( int argc, char *argv[] )
Paul Bakker5690efc2011-05-26 13:16:06 +000071{
Paul Bakkercce9d772011-11-18 14:26:47 +000072 ((void) argc);
73 ((void) argv);
74
Paul Bakker5690efc2011-05-26 13:16:06 +000075 printf("POLARSSL_BIGNUM_C and/or POLARSSL_RSA_C and/or "
76 "POLARSSL_X509_PARSE_C and/or POLARSSL_FS_IO not defined.\n");
77 return( 0 );
78}
79#else
Paul Bakkercce9d772011-11-18 14:26:47 +000080int main( int argc, char *argv[] )
Paul Bakker4593aea2009-02-09 22:32:35 +000081{
82 int ret, i;
Paul Bakkerd98030e2009-05-02 15:13:40 +000083 x509_cert cacert;
84 x509_crl crl;
85 char buf[10240];
86
Paul Bakkercce9d772011-11-18 14:26:47 +000087 ((void) argc);
88 ((void) argv);
89
Paul Bakkerd98030e2009-05-02 15:13:40 +000090 memset( &cacert, 0, sizeof( x509_cert ) );
91 memset( &crl, 0, sizeof( x509_crl ) );
Paul Bakker4593aea2009-02-09 22:32:35 +000092
93 /*
94 * 1.1. Load the trusted CA
95 */
96 printf( "\n . Loading the CA root certificate ..." );
97 fflush( stdout );
98
Paul Bakker4593aea2009-02-09 22:32:35 +000099 /*
100 * Alternatively, you may load the CA certificates from a .pem or
101 * .crt file by calling x509parse_crtfile( &cacert, "myca.crt" ).
102 */
Paul Bakker69e095c2011-12-10 21:55:01 +0000103 ret = x509parse_crtfile( &cacert, "ssl/test-ca/test-ca.crt" );
Paul Bakker4593aea2009-02-09 22:32:35 +0000104 if( ret != 0 )
105 {
106 printf( " failed\n ! x509parse_crtfile returned %d\n\n", ret );
107 goto exit;
108 }
109
110 printf( " ok\n" );
111
Paul Bakker40ea7de2009-05-03 10:18:48 +0000112 x509parse_cert_info( buf, 1024, "CRT: ", &cacert );
113 printf("%s\n", buf );
114
Paul Bakkerd98030e2009-05-02 15:13:40 +0000115 /*
116 * 1.2. Load the CRL
117 */
118 printf( " . Loading the CRL ..." );
119 fflush( stdout );
120
121 ret = x509parse_crlfile( &crl, "ssl/test-ca/crl.pem" );
122 if( ret != 0 )
123 {
124 printf( " failed\n ! x509parse_crlfile returned %d\n\n", ret );
125 goto exit;
126 }
127
128 printf( " ok\n" );
129
130 x509parse_crl_info( buf, 1024, "CRL: ", &crl );
131 printf("%s\n", buf );
132
Paul Bakker4593aea2009-02-09 22:32:35 +0000133 for( i = 0; i < MAX_CLIENT_CERTS; i++ )
134 {
135 /*
Paul Bakkerd98030e2009-05-02 15:13:40 +0000136 * 1.3. Load own certificate
Paul Bakker4593aea2009-02-09 22:32:35 +0000137 */
Paul Bakkerd98030e2009-05-02 15:13:40 +0000138 char name[512];
139 int flags;
140 x509_cert clicert;
141 rsa_context rsa;
Paul Bakker4593aea2009-02-09 22:32:35 +0000142
143 memset( &clicert, 0, sizeof( x509_cert ) );
Paul Bakkerd98030e2009-05-02 15:13:40 +0000144 memset( &rsa, 0, sizeof( rsa_context ) );
145
146 snprintf(name, 512, "ssl/test-ca/%s", client_certificates[i]);
147
148 printf( " . Loading the client certificate %s...", name );
149 fflush( stdout );
Paul Bakker4593aea2009-02-09 22:32:35 +0000150
Paul Bakker69e095c2011-12-10 21:55:01 +0000151 ret = x509parse_crtfile( &clicert, name );
Paul Bakkerd98030e2009-05-02 15:13:40 +0000152 if( ret != 0 )
153 {
154 printf( " failed\n ! x509parse_crt returned %d\n\n", ret );
155 goto exit;
156 }
Paul Bakker4593aea2009-02-09 22:32:35 +0000157
Paul Bakkerd98030e2009-05-02 15:13:40 +0000158 printf( " ok\n" );
Paul Bakkera1d3e5f2009-03-28 17:30:26 +0000159
160 /*
Paul Bakkerd98030e2009-05-02 15:13:40 +0000161 * 1.4. Verify certificate validity with CA certificate
Paul Bakkera1d3e5f2009-03-28 17:30:26 +0000162 */
Paul Bakkerd98030e2009-05-02 15:13:40 +0000163 printf( " . Verify the client certificate with CA certificate..." );
164 fflush( stdout );
165
Paul Bakkerb63b0af2011-01-13 17:54:59 +0000166 ret = x509parse_verify( &clicert, &cacert, &crl, NULL, &flags, NULL, NULL );
Paul Bakkerd98030e2009-05-02 15:13:40 +0000167 if( ret != 0 )
168 {
Paul Bakker40ea7de2009-05-03 10:18:48 +0000169 if( ret == POLARSSL_ERR_X509_CERT_VERIFY_FAILED )
170 {
Paul Bakker860d36b2009-05-03 17:29:56 +0000171 if( flags & BADCERT_CN_MISMATCH )
172 printf( " CN_MISMATCH " );
173 if( flags & BADCERT_EXPIRED )
174 printf( " EXPIRED " );
175 if( flags & BADCERT_REVOKED )
Paul Bakker40ea7de2009-05-03 10:18:48 +0000176 printf( " REVOKED " );
Paul Bakker860d36b2009-05-03 17:29:56 +0000177 if( flags & BADCERT_NOT_TRUSTED )
178 printf( " NOT_TRUSTED " );
179 if( flags & BADCRL_NOT_TRUSTED )
180 printf( " CRL_NOT_TRUSTED " );
181 if( flags & BADCRL_EXPIRED )
182 printf( " CRL_EXPIRED " );
Paul Bakker40ea7de2009-05-03 10:18:48 +0000183 } else {
184 printf( " failed\n ! x509parse_verify returned %d\n\n", ret );
185 goto exit;
186 }
Paul Bakkerd98030e2009-05-02 15:13:40 +0000187 }
188
189 printf( " ok\n" );
190
191 /*
192 * 1.5. Load own private key
193 */
194 snprintf(name, 512, "ssl/test-ca/%s", client_private_keys[i]);
Paul Bakkera1d3e5f2009-03-28 17:30:26 +0000195
196 printf( " . Loading the client private key %s...", name );
197 fflush( stdout );
198
Manuel Pégourié-Gonnardba4878a2013-06-27 10:51:01 +0200199 ret = x509parse_keyfile_rsa( &rsa, name, NULL );
Paul Bakkerd98030e2009-05-02 15:13:40 +0000200 if( ret != 0 )
201 {
Manuel Pégourié-Gonnardba4878a2013-06-27 10:51:01 +0200202 printf( " failed\n ! x509parse_key_rsa returned %d\n\n", ret );
Paul Bakkerd98030e2009-05-02 15:13:40 +0000203 goto exit;
204 }
Paul Bakkera1d3e5f2009-03-28 17:30:26 +0000205
Paul Bakkerd98030e2009-05-02 15:13:40 +0000206 printf( " ok\n" );
Paul Bakkera1d3e5f2009-03-28 17:30:26 +0000207
Paul Bakkerd98030e2009-05-02 15:13:40 +0000208 /*
Manuel Pégourié-Gonnardbe506802013-07-11 13:17:21 +0200209 * 1.6. Verify certificate validity with private key
Paul Bakkerd98030e2009-05-02 15:13:40 +0000210 */
211 printf( " . Verify the client certificate with private key..." );
212 fflush( stdout );
Paul Bakkera1d3e5f2009-03-28 17:30:26 +0000213
Manuel Pégourié-Gonnardbe506802013-07-11 13:17:21 +0200214
215 /* EC NOT IMPLEMENTED YET */
216 if( clicert.pk.type != POLARSSL_PK_RSA )
217 {
218 printf( " failed\n ! certificate's key is not RSA\n\n" );
219 ret = POLARSSL_ERR_X509_FEATURE_UNAVAILABLE;
220 goto exit;
221 }
222
223 ret = mpi_cmp_mpi(&rsa.N, &pk_rsa( clicert.pk )->N);
Paul Bakkerd98030e2009-05-02 15:13:40 +0000224 if( ret != 0 )
225 {
226 printf( " failed\n ! mpi_cmp_mpi for N returned %d\n\n", ret );
227 goto exit;
228 }
Paul Bakkera1d3e5f2009-03-28 17:30:26 +0000229
Manuel Pégourié-Gonnardbe506802013-07-11 13:17:21 +0200230 ret = mpi_cmp_mpi(&rsa.E, &pk_rsa( clicert.pk )->E);
Paul Bakkerd98030e2009-05-02 15:13:40 +0000231 if( ret != 0 )
232 {
233 printf( " failed\n ! mpi_cmp_mpi for E returned %d\n\n", ret );
234 goto exit;
235 }
Paul Bakkera1d3e5f2009-03-28 17:30:26 +0000236
Paul Bakkerd98030e2009-05-02 15:13:40 +0000237 ret = rsa_check_privkey( &rsa );
238 if( ret != 0 )
239 {
240 printf( " failed\n ! rsa_check_privkey returned %d\n\n", ret );
241 goto exit;
242 }
Paul Bakkera1d3e5f2009-03-28 17:30:26 +0000243
Paul Bakkerd98030e2009-05-02 15:13:40 +0000244 printf( " ok\n" );
Paul Bakkera1d3e5f2009-03-28 17:30:26 +0000245
Paul Bakkerd98030e2009-05-02 15:13:40 +0000246 x509_free( &clicert );
247 rsa_free( &rsa );
Paul Bakker4593aea2009-02-09 22:32:35 +0000248 }
249
250exit:
Paul Bakker4593aea2009-02-09 22:32:35 +0000251 x509_free( &cacert );
Paul Bakkerd98030e2009-05-02 15:13:40 +0000252 x509_crl_free( &crl );
Paul Bakker4593aea2009-02-09 22:32:35 +0000253
Paul Bakkercce9d772011-11-18 14:26:47 +0000254#if defined(_WIN32)
Paul Bakker4593aea2009-02-09 22:32:35 +0000255 printf( " + Press Enter to exit this program.\n" );
256 fflush( stdout ); getchar();
257#endif
258
259 return( ret );
260}
Paul Bakker5690efc2011-05-26 13:16:06 +0000261#endif /* POLARSSL_BIGNUM_C && POLARSSL_RSA_C && POLARSSL_X509_PARSE_C &&
262 POLARSSL_FS_IO */