commit | 10c44d767d62520385401cbc710436b2cd210dcc | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Thu Nov 20 17:30:37 2014 +0100 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Thu Nov 20 17:30:37 2014 +0100 |
tree | cf6d133fec9666d94be66f8eafe483efabb6aed9 | |
parent | fd6c85c3eb39a59231843bcabc46e5fcbfba30d5 [diff] [blame] |
Allow x509_crt_verify_child() in recursion.pl
diff --git a/scripts/recursion.pl b/scripts/recursion.pl index d75a4ef..2c39c14 100755 --- a/scripts/recursion.pl +++ b/scripts/recursion.pl
@@ -16,7 +16,8 @@ # 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;