1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Moved POLARSSL_FS_IO check to .function from .data

This commit is contained in:
Paul Bakker
2013-09-15 15:20:37 +02:00
parent e827ce013f
commit 428b9ba3b7
16 changed files with 227 additions and 231 deletions

View File

@ -30,7 +30,7 @@ int verify_all( void *data, x509_cert *crt, int certificate_depth, int *flags )
* END_DEPENDENCIES
*/
/* BEGIN_CASE */
/* BEGIN_CASE depends_on:POLARSSL_FS_IO */
void x509_cert_info( char *crt_file, char *result_str )
{
x509_cert crt;
@ -52,7 +52,7 @@ void x509_cert_info( char *crt_file, char *result_str )
}
/* END_CASE */
/* BEGIN_CASE */
/* BEGIN_CASE depends_on:POLARSSL_FS_IO */
void x509_crl_info( char *crl_file, char *result_str )
{
x509_crl crl;
@ -74,7 +74,7 @@ void x509_crl_info( char *crl_file, char *result_str )
}
/* END_CASE */
/* BEGIN_CASE */
/* BEGIN_CASE depends_on:POLARSSL_FS_IO */
void x509_verify( char *crt_file, char *ca_file, char *crl_file,
char *cn_name_str, int result, int flags_result,
char *verify_callback )
@ -118,7 +118,7 @@ void x509_verify( char *crt_file, char *ca_file, char *crl_file,
}
/* END_CASE */
/* BEGIN_CASE */
/* BEGIN_CASE depends_on:POLARSSL_FS_IO */
void x509_dn_gets( char *crt_file, char *entity, char *result_str )
{
x509_cert crt;
@ -145,7 +145,7 @@ void x509_dn_gets( char *crt_file, char *entity, char *result_str )
}
/* END_CASE */
/* BEGIN_CASE */
/* BEGIN_CASE depends_on:POLARSSL_FS_IO */
void x509_time_expired( char *crt_file, char *entity, int result )
{
x509_cert crt;