Paul Bakker | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 1 | /* |
| 2 | * SSL certificate functionality tests |
| 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 | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 10 | * |
| 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 Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame^] | 33 | #include "polarssl/config.h" |
| 34 | |
Paul Bakker | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 35 | #include "polarssl/certs.h" |
| 36 | #include "polarssl/x509.h" |
| 37 | |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 38 | #if defined _MSC_VER && !defined snprintf |
| 39 | #define snprintf _snprintf |
| 40 | #endif |
| 41 | |
Paul Bakker | 40ea7de | 2009-05-03 10:18:48 +0000 | [diff] [blame] | 42 | #define MAX_CLIENT_CERTS 8 |
Paul Bakker | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 43 | |
| 44 | char *client_certificates[MAX_CLIENT_CERTS] = |
| 45 | { |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 46 | "client1.crt", |
| 47 | "client2.crt", |
Paul Bakker | 40ea7de | 2009-05-03 10:18:48 +0000 | [diff] [blame] | 48 | "server1.crt", |
| 49 | "server2.crt", |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 50 | "cert_sha224.crt", |
| 51 | "cert_sha256.crt", |
| 52 | "cert_sha384.crt", |
| 53 | "cert_sha512.crt" |
Paul Bakker | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 54 | }; |
| 55 | |
Paul Bakker | a1d3e5f | 2009-03-28 17:30:26 +0000 | [diff] [blame] | 56 | char *client_private_keys[MAX_CLIENT_CERTS] = |
| 57 | { |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 58 | "client1.key", |
| 59 | "client2.key", |
Paul Bakker | 40ea7de | 2009-05-03 10:18:48 +0000 | [diff] [blame] | 60 | "server1.key", |
| 61 | "server2.key", |
Paul Bakker | f17ed28 | 2011-02-09 17:10:48 +0000 | [diff] [blame] | 62 | "cert_digest.key", |
| 63 | "cert_digest.key", |
| 64 | "cert_digest.key", |
| 65 | "cert_digest.key" |
Paul Bakker | a1d3e5f | 2009-03-28 17:30:26 +0000 | [diff] [blame] | 66 | }; |
| 67 | |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame^] | 68 | #if !defined(POLARSSL_BIGNUM_C) || !defined(POLARSSL_RSA_C) || \ |
| 69 | !defined(POLARSSL_X509_PARSE_C) || !defined(POLARSSL_FS_IO) |
| 70 | int main( void ) |
| 71 | { |
| 72 | printf("POLARSSL_BIGNUM_C and/or POLARSSL_RSA_C and/or " |
| 73 | "POLARSSL_X509_PARSE_C and/or POLARSSL_FS_IO not defined.\n"); |
| 74 | return( 0 ); |
| 75 | } |
| 76 | #else |
Paul Bakker | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 77 | int main( void ) |
| 78 | { |
| 79 | int ret, i; |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 80 | x509_cert cacert; |
| 81 | x509_crl crl; |
| 82 | char buf[10240]; |
| 83 | |
| 84 | memset( &cacert, 0, sizeof( x509_cert ) ); |
| 85 | memset( &crl, 0, sizeof( x509_crl ) ); |
Paul Bakker | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 86 | |
| 87 | /* |
| 88 | * 1.1. Load the trusted CA |
| 89 | */ |
| 90 | printf( "\n . Loading the CA root certificate ..." ); |
| 91 | fflush( stdout ); |
| 92 | |
Paul Bakker | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 93 | /* |
| 94 | * Alternatively, you may load the CA certificates from a .pem or |
| 95 | * .crt file by calling x509parse_crtfile( &cacert, "myca.crt" ). |
| 96 | */ |
| 97 | ret = x509parse_crtfile( &cacert, "ssl/test-ca/test-ca.crt" ); |
| 98 | if( ret != 0 ) |
| 99 | { |
| 100 | printf( " failed\n ! x509parse_crtfile returned %d\n\n", ret ); |
| 101 | goto exit; |
| 102 | } |
| 103 | |
| 104 | printf( " ok\n" ); |
| 105 | |
Paul Bakker | 40ea7de | 2009-05-03 10:18:48 +0000 | [diff] [blame] | 106 | x509parse_cert_info( buf, 1024, "CRT: ", &cacert ); |
| 107 | printf("%s\n", buf ); |
| 108 | |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 109 | /* |
| 110 | * 1.2. Load the CRL |
| 111 | */ |
| 112 | printf( " . Loading the CRL ..." ); |
| 113 | fflush( stdout ); |
| 114 | |
| 115 | ret = x509parse_crlfile( &crl, "ssl/test-ca/crl.pem" ); |
| 116 | if( ret != 0 ) |
| 117 | { |
| 118 | printf( " failed\n ! x509parse_crlfile returned %d\n\n", ret ); |
| 119 | goto exit; |
| 120 | } |
| 121 | |
| 122 | printf( " ok\n" ); |
| 123 | |
| 124 | x509parse_crl_info( buf, 1024, "CRL: ", &crl ); |
| 125 | printf("%s\n", buf ); |
| 126 | |
Paul Bakker | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 127 | for( i = 0; i < MAX_CLIENT_CERTS; i++ ) |
| 128 | { |
| 129 | /* |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 130 | * 1.3. Load own certificate |
Paul Bakker | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 131 | */ |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 132 | char name[512]; |
| 133 | int flags; |
| 134 | x509_cert clicert; |
| 135 | rsa_context rsa; |
Paul Bakker | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 136 | |
| 137 | memset( &clicert, 0, sizeof( x509_cert ) ); |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 138 | memset( &rsa, 0, sizeof( rsa_context ) ); |
| 139 | |
| 140 | snprintf(name, 512, "ssl/test-ca/%s", client_certificates[i]); |
| 141 | |
| 142 | printf( " . Loading the client certificate %s...", name ); |
| 143 | fflush( stdout ); |
Paul Bakker | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 144 | |
| 145 | ret = x509parse_crtfile( &clicert, name ); |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 146 | if( ret != 0 ) |
| 147 | { |
| 148 | printf( " failed\n ! x509parse_crt returned %d\n\n", ret ); |
| 149 | goto exit; |
| 150 | } |
Paul Bakker | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 151 | |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 152 | printf( " ok\n" ); |
Paul Bakker | a1d3e5f | 2009-03-28 17:30:26 +0000 | [diff] [blame] | 153 | |
| 154 | /* |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 155 | * 1.4. Verify certificate validity with CA certificate |
Paul Bakker | a1d3e5f | 2009-03-28 17:30:26 +0000 | [diff] [blame] | 156 | */ |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 157 | printf( " . Verify the client certificate with CA certificate..." ); |
| 158 | fflush( stdout ); |
| 159 | |
Paul Bakker | b63b0af | 2011-01-13 17:54:59 +0000 | [diff] [blame] | 160 | ret = x509parse_verify( &clicert, &cacert, &crl, NULL, &flags, NULL, NULL ); |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 161 | if( ret != 0 ) |
| 162 | { |
Paul Bakker | 40ea7de | 2009-05-03 10:18:48 +0000 | [diff] [blame] | 163 | if( ret == POLARSSL_ERR_X509_CERT_VERIFY_FAILED ) |
| 164 | { |
Paul Bakker | 860d36b | 2009-05-03 17:29:56 +0000 | [diff] [blame] | 165 | if( flags & BADCERT_CN_MISMATCH ) |
| 166 | printf( " CN_MISMATCH " ); |
| 167 | if( flags & BADCERT_EXPIRED ) |
| 168 | printf( " EXPIRED " ); |
| 169 | if( flags & BADCERT_REVOKED ) |
Paul Bakker | 40ea7de | 2009-05-03 10:18:48 +0000 | [diff] [blame] | 170 | printf( " REVOKED " ); |
Paul Bakker | 860d36b | 2009-05-03 17:29:56 +0000 | [diff] [blame] | 171 | if( flags & BADCERT_NOT_TRUSTED ) |
| 172 | printf( " NOT_TRUSTED " ); |
| 173 | if( flags & BADCRL_NOT_TRUSTED ) |
| 174 | printf( " CRL_NOT_TRUSTED " ); |
| 175 | if( flags & BADCRL_EXPIRED ) |
| 176 | printf( " CRL_EXPIRED " ); |
Paul Bakker | 40ea7de | 2009-05-03 10:18:48 +0000 | [diff] [blame] | 177 | } else { |
| 178 | printf( " failed\n ! x509parse_verify returned %d\n\n", ret ); |
| 179 | goto exit; |
| 180 | } |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | printf( " ok\n" ); |
| 184 | |
| 185 | /* |
| 186 | * 1.5. Load own private key |
| 187 | */ |
| 188 | snprintf(name, 512, "ssl/test-ca/%s", client_private_keys[i]); |
Paul Bakker | a1d3e5f | 2009-03-28 17:30:26 +0000 | [diff] [blame] | 189 | |
| 190 | printf( " . Loading the client private key %s...", name ); |
| 191 | fflush( stdout ); |
| 192 | |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 193 | ret = x509parse_keyfile( &rsa, name, NULL ); |
| 194 | if( ret != 0 ) |
| 195 | { |
| 196 | printf( " failed\n ! x509parse_key returned %d\n\n", ret ); |
| 197 | goto exit; |
| 198 | } |
Paul Bakker | a1d3e5f | 2009-03-28 17:30:26 +0000 | [diff] [blame] | 199 | |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 200 | printf( " ok\n" ); |
Paul Bakker | a1d3e5f | 2009-03-28 17:30:26 +0000 | [diff] [blame] | 201 | |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 202 | /* |
| 203 | * 1.5. Verify certificate validity with private key |
| 204 | */ |
| 205 | printf( " . Verify the client certificate with private key..." ); |
| 206 | fflush( stdout ); |
Paul Bakker | a1d3e5f | 2009-03-28 17:30:26 +0000 | [diff] [blame] | 207 | |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 208 | ret = mpi_cmp_mpi(&rsa.N, &clicert.rsa.N); |
| 209 | if( ret != 0 ) |
| 210 | { |
| 211 | printf( " failed\n ! mpi_cmp_mpi for N returned %d\n\n", ret ); |
| 212 | goto exit; |
| 213 | } |
Paul Bakker | a1d3e5f | 2009-03-28 17:30:26 +0000 | [diff] [blame] | 214 | |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 215 | ret = mpi_cmp_mpi(&rsa.E, &clicert.rsa.E); |
| 216 | if( ret != 0 ) |
| 217 | { |
| 218 | printf( " failed\n ! mpi_cmp_mpi for E returned %d\n\n", ret ); |
| 219 | goto exit; |
| 220 | } |
Paul Bakker | a1d3e5f | 2009-03-28 17:30:26 +0000 | [diff] [blame] | 221 | |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 222 | ret = rsa_check_privkey( &rsa ); |
| 223 | if( ret != 0 ) |
| 224 | { |
| 225 | printf( " failed\n ! rsa_check_privkey returned %d\n\n", ret ); |
| 226 | goto exit; |
| 227 | } |
Paul Bakker | a1d3e5f | 2009-03-28 17:30:26 +0000 | [diff] [blame] | 228 | |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 229 | printf( " ok\n" ); |
Paul Bakker | a1d3e5f | 2009-03-28 17:30:26 +0000 | [diff] [blame] | 230 | |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 231 | x509_free( &clicert ); |
| 232 | rsa_free( &rsa ); |
Paul Bakker | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | exit: |
Paul Bakker | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 236 | x509_free( &cacert ); |
Paul Bakker | d98030e | 2009-05-02 15:13:40 +0000 | [diff] [blame] | 237 | x509_crl_free( &crl ); |
Paul Bakker | 4593aea | 2009-02-09 22:32:35 +0000 | [diff] [blame] | 238 | |
| 239 | #ifdef WIN32 |
| 240 | printf( " + Press Enter to exit this program.\n" ); |
| 241 | fflush( stdout ); getchar(); |
| 242 | #endif |
| 243 | |
| 244 | return( ret ); |
| 245 | } |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame^] | 246 | #endif /* POLARSSL_BIGNUM_C && POLARSSL_RSA_C && POLARSSL_X509_PARSE_C && |
| 247 | POLARSSL_FS_IO */ |