2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_HEADER */
|
2012-02-16 14:09:13 +00:00
|
|
|
#include <polarssl/x509write.h>
|
|
|
|
#include <polarssl/x509.h>
|
|
|
|
#include <polarssl/pem.h>
|
2013-04-07 20:00:46 +00:00
|
|
|
#include <polarssl/oid.h>
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_HEADER */
|
2012-02-16 14:09:13 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_DEPENDENCIES
|
|
|
|
* depends_on:POLARSSL_X509_WRITE_C:POLARSSL_BIGNUM_C
|
|
|
|
* END_DEPENDENCIES
|
|
|
|
*/
|
2012-02-16 14:09:13 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void x509_cert_req_check( char *key_file, int md_type,
|
|
|
|
char *cert_req_check_file )
|
2012-02-16 14:09:13 +00:00
|
|
|
{
|
|
|
|
rsa_context rsa;
|
|
|
|
pem_context pem;
|
|
|
|
x509_req_name req_name, *cur;
|
|
|
|
unsigned char *c;
|
|
|
|
unsigned char buf[4000];
|
|
|
|
unsigned char check_buf[4000];
|
|
|
|
int ret;
|
|
|
|
size_t olen = 2000;
|
|
|
|
FILE *f;
|
|
|
|
|
|
|
|
cur = &req_name;
|
|
|
|
|
|
|
|
memset( cur, 0, sizeof(x509_req_name) );
|
2013-04-07 20:00:46 +00:00
|
|
|
strcpy( cur->oid, OID_AT_CN );
|
2012-02-16 14:09:13 +00:00
|
|
|
strcpy( cur->name, "PolarSSL Server 1" );
|
|
|
|
cur->next = malloc( sizeof(x509_req_name) );
|
|
|
|
cur = cur->next;
|
|
|
|
|
|
|
|
memset( cur, 0, sizeof(x509_req_name) );
|
2013-04-07 20:00:46 +00:00
|
|
|
strcpy( cur->oid, OID_AT_ORGANIZATION );
|
2012-02-16 14:09:13 +00:00
|
|
|
strcpy( cur->name, "PolarSSL" );
|
|
|
|
cur->next = malloc( sizeof(x509_req_name) );
|
|
|
|
cur = cur->next;
|
|
|
|
|
|
|
|
memset( cur, 0, sizeof(x509_req_name) );
|
2013-04-07 20:00:46 +00:00
|
|
|
strcpy( cur->oid, OID_AT_COUNTRY );
|
2012-02-16 14:09:13 +00:00
|
|
|
strcpy( cur->name, "NL" );
|
|
|
|
|
|
|
|
memset( &rsa, 0, sizeof(rsa_context) );
|
2013-08-20 09:48:36 +00:00
|
|
|
ret = x509parse_keyfile_rsa( &rsa, key_file, NULL );
|
2012-02-16 14:09:13 +00:00
|
|
|
TEST_ASSERT( ret == 0 );
|
|
|
|
if( ret != 0 )
|
2013-08-20 09:48:36 +00:00
|
|
|
return;
|
2012-02-16 14:09:13 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
ret = x509_write_cert_req( buf, 4000, &rsa, &req_name, md_type );
|
2012-02-16 14:09:13 +00:00
|
|
|
TEST_ASSERT( ret >= 0 );
|
|
|
|
|
|
|
|
c = buf + 3999 - ret;
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
f = fopen( cert_req_check_file, "r" );
|
2012-02-16 14:09:13 +00:00
|
|
|
TEST_ASSERT( f != NULL );
|
|
|
|
fread( check_buf, 1, 4000, f );
|
|
|
|
fclose( f );
|
|
|
|
|
|
|
|
pem_init( &pem );
|
|
|
|
pem_read_buffer( &pem, "-----BEGIN CERTIFICATE REQUEST-----", "-----END CERTIFICATE REQUEST-----", check_buf, NULL, 0, &olen );
|
|
|
|
|
|
|
|
TEST_ASSERT( memcmp( c, pem.buf, pem.buflen ) == 0 );
|
|
|
|
TEST_ASSERT( pem.buflen == (size_t) ret );
|
2013-01-03 10:33:48 +00:00
|
|
|
|
|
|
|
while( ( cur = req_name.next ) != NULL )
|
|
|
|
{
|
|
|
|
req_name.next = cur->next;
|
|
|
|
free( cur );
|
|
|
|
}
|
|
|
|
|
|
|
|
rsa_free( &rsa );
|
|
|
|
pem_free( &pem );
|
2012-02-16 14:09:13 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|