Allow x509_crt_verify_child() in recursion.pl

This commit is contained in:
Manuel Pégourié-Gonnard 2014-11-20 17:30:37 +01:00
parent fd6c85c3eb
commit 10c44d767d

View File

@ -16,7 +16,8 @@ use open qw(:std utf8);
# exclude functions that are ok:
# - mpi_write_hlp: bounded by size of mpi, a compile-time constant
my $known_ok = qr/mpi_write_hlp/;
# - x509_crt_verify_child: bounded by POLARSSL_X509_MAX_INTERMEDIATE_CA
my $known_ok = qr/mpi_write_hlp|x509_crt_verify_child/;
my $cur_name;
my $inside;