123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- BEGIN_HEADER
- #include <polarssl/x509.h>
- #include <polarssl/pem.h>
- int verify_none( void *data, x509_cert *crt, int certificate_depth, int preverify_ok )
- {
- ((void) data);
- ((void) crt);
- ((void) certificate_depth);
- ((void) preverify_ok);
- return 1;
- }
- int verify_all( void *data, x509_cert *crt, int certificate_depth, int preverify_ok )
- {
- ((void) data);
- ((void) crt);
- ((void) certificate_depth);
- ((void) preverify_ok);
- return 0;
- }
- END_HEADER
- BEGIN_DEPENDENCIES
- depends_on:POLARSSL_X509_PARSE_C:POLARSSL_BIGNUM_C
- END_DEPENDENCIES
- BEGIN_CASE
- x509_cert_info:crt_file:result_str
- {
- x509_cert crt;
- char buf[2000];
- int res;
- memset( &crt, 0, sizeof( x509_cert ) );
- memset( buf, 0, 2000 );
- TEST_ASSERT( x509parse_crtfile( &crt, {crt_file} ) == 0 );
- res = x509parse_cert_info( buf, 2000, "", &crt );
- TEST_ASSERT( res != -1 );
- TEST_ASSERT( res != -2 );
- TEST_ASSERT( strcmp( buf, {result_str} ) == 0 );
- }
- END_CASE
- BEGIN_CASE
- x509_crl_info:crl_file:result_str
- {
- x509_crl crl;
- char buf[2000];
- int res;
- memset( &crl, 0, sizeof( x509_crl ) );
- memset( buf, 0, 2000 );
- TEST_ASSERT( x509parse_crlfile( &crl, {crl_file} ) == 0 );
- res = x509parse_crl_info( buf, 2000, "", &crl );
- TEST_ASSERT( res != -1 );
- TEST_ASSERT( res != -2 );
- TEST_ASSERT( strcmp( buf, {result_str} ) == 0 );
- }
- END_CASE
- BEGIN_CASE
- x509_verify:crt_file:ca_file:crl_file:cn_name:result:flags:verify_callback
- {
- x509_cert crt;
- x509_cert ca;
- x509_crl crl;
- int flags = 0;
- int res;
- memset( &crt, 0, sizeof( x509_cert ) );
- memset( &ca, 0, sizeof( x509_cert ) );
- memset( &crl, 0, sizeof( x509_crl ) );
- TEST_ASSERT( x509parse_crtfile( &crt, {crt_file} ) == 0 );
- TEST_ASSERT( x509parse_crtfile( &ca, {ca_file} ) == 0 );
- TEST_ASSERT( x509parse_crlfile( &crl, {crl_file} ) == 0 );
- res = x509parse_verify( &crt, &ca, &crl, {cn_name}, &flags, {verify_callback}, NULL );
- TEST_ASSERT( res == ( {result} ) );
- TEST_ASSERT( flags == ( {flags} ) );
- }
- END_CASE
- BEGIN_CASE
- x509_dn_gets:crt_file:entity:result_str
- {
- x509_cert crt;
- char buf[2000];
- int res;
- memset( &crt, 0, sizeof( x509_cert ) );
- memset( buf, 0, 2000 );
- TEST_ASSERT( x509parse_crtfile( &crt, {crt_file} ) == 0 );
- res = x509parse_dn_gets( buf, 2000, &crt.{entity} );
- TEST_ASSERT( res != -1 );
- TEST_ASSERT( res != -2 );
- TEST_ASSERT( strcmp( buf, {result_str} ) == 0 );
- }
- END_CASE
- BEGIN_CASE
- x509_time_expired:crt_file:entity:result
- {
- x509_cert crt;
- memset( &crt, 0, sizeof( x509_cert ) );
- TEST_ASSERT( x509parse_crtfile( &crt, {crt_file} ) == 0 );
- TEST_ASSERT( x509parse_time_expired( &crt.{entity} ) == {result} );
- }
- END_CASE
- BEGIN_CASE
- x509parse_keyfile:key_file:password:result
- {
- rsa_context rsa;
- int res;
- memset( &rsa, 0, sizeof( rsa_context ) );
- res = x509parse_keyfile( &rsa, {key_file}, {password} );
- TEST_ASSERT( res == {result} );
- if( res == 0 )
- {
- TEST_ASSERT( rsa_check_privkey( &rsa ) == 0 );
- }
- }
- END_CASE
- BEGIN_CASE
- x509parse_public_keyfile:key_file:result
- {
- rsa_context rsa;
- int res;
- memset( &rsa, 0, sizeof( rsa_context ) );
- res = x509parse_public_keyfile( &rsa, {key_file} );
- TEST_ASSERT( res == {result} );
- if( res == 0 )
- {
- TEST_ASSERT( rsa_check_pubkey( &rsa ) == 0 );
- }
- }
- END_CASE
- BEGIN_CASE
- x509parse_crt:crt_data:result_str:result
- {
- x509_cert crt;
- unsigned char buf[2000];
- unsigned char output[2000];
- int data_len, res;
- memset( &crt, 0, sizeof( x509_cert ) );
- memset( buf, 0, 2000 );
- memset( output, 0, 2000 );
- data_len = unhexify( buf, {crt_data} );
- TEST_ASSERT( x509parse_crt( &crt, buf, data_len ) == ( {result} ) );
- if( ( {result} ) == 0 )
- {
- res = x509parse_cert_info( (char *) output, 2000, "", &crt );
-
- TEST_ASSERT( res != -1 );
- TEST_ASSERT( res != -2 );
- TEST_ASSERT( strcmp( (char *) output, {result_str} ) == 0 );
- }
- }
- END_CASE
- BEGIN_CASE
- x509parse_crl:crl_data:result_str:result
- {
- x509_crl crl;
- unsigned char buf[2000];
- unsigned char output[2000];
- int data_len, res;
- memset( &crl, 0, sizeof( x509_crl ) );
- memset( buf, 0, 2000 );
- memset( output, 0, 2000 );
- data_len = unhexify( buf, {crl_data} );
- TEST_ASSERT( x509parse_crl( &crl, buf, data_len ) == ( {result} ) );
- if( ( {result} ) == 0 )
- {
- res = x509parse_crl_info( (char *) output, 2000, "", &crl );
-
- TEST_ASSERT( res != -1 );
- TEST_ASSERT( res != -2 );
- TEST_ASSERT( strcmp( (char *) output, {result_str} ) == 0 );
- }
- }
- END_CASE
- BEGIN_CASE
- x509parse_key:key_data:result_str:result
- {
- rsa_context rsa;
- unsigned char buf[2000];
- unsigned char output[2000];
- int data_len;
- memset( &rsa, 0, sizeof( rsa_context ) );
- memset( buf, 0, 2000 );
- memset( output, 0, 2000 );
- data_len = unhexify( buf, {key_data} );
- x509parse_key( &rsa, buf, data_len, NULL, 0 );
- TEST_ASSERT( x509parse_key( &rsa, buf, data_len, NULL, 0 ) == ( {result} ) );
- if( ( {result} ) == 0 )
- {
- TEST_ASSERT( 1 );
- }
- }
- END_CASE
- BEGIN_CASE
- x509_selftest:
- {
- TEST_ASSERT( x509_self_test( 0 ) == 0 );
- }
- END_CASE
|