summaryrefslogtreecommitdiffstats
path: root/util/mkdef.pl
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2017-06-27 12:04:37 -0400
committerRich Salz <rsalz@openssl.org>2017-07-19 03:25:16 -0400
commit12fb8c3d2dd00f3d4f1b084385403d26ed64a596 (patch)
tree7fc90f8f80e16ab4e8b79def2162a56dd2d704dc /util/mkdef.pl
parent0299f3f790437d124d15f60489c774407325f82b (diff)
Add DRBG random method
Ported from the last FIPS release, with DUAL_EC and SHA1 and the self-tests removed. Since only AES-CTR is supported, other code simplifications were done. Removed the "entropy blocklen" concept. Moved internal functions to new include/internal/rand.h. Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/3789)
Diffstat (limited to 'util/mkdef.pl')
-rwxr-xr-xutil/mkdef.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 6315a5bea5..b3eb6b3d9d 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -246,6 +246,7 @@ my $crypto ="include/internal/dso.h";
$crypto.=" include/internal/o_dir.h";
$crypto.=" include/internal/o_str.h";
$crypto.=" include/internal/err.h";
+$crypto.=" include/internal/rand.h";
foreach my $f ( glob(catfile($config{sourcedir},'include/openssl/*.h')) ) {
my $fn = "include/openssl/" . lc(basename($f));
$crypto .= " $fn" if !defined $skipthese{$fn} && $f !~ m@/[a-z]+err\.h$@;