summaryrefslogtreecommitdiffstats
path: root/util
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
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')
-rw-r--r--util/libcrypto.num13
-rwxr-xr-xutil/mkdef.pl1
2 files changed, 14 insertions, 0 deletions
diff --git a/util/libcrypto.num b/util/libcrypto.num
index 436969429f..136fbafe72 100644
--- a/util/libcrypto.num
+++ b/util/libcrypto.num
@@ -4345,3 +4345,16 @@ OSSL_STORE_LOADER_get0_engine 4287 1_1_1 EXIST::FUNCTION:
OPENSSL_fork_prepare 4288 1_1_1 EXIST:UNIX:FUNCTION:
OPENSSL_fork_parent 4289 1_1_1 EXIST:UNIX:FUNCTION:
OPENSSL_fork_child 4290 1_1_1 EXIST:UNIX:FUNCTION:
+RAND_drbg 4291 1_1_1 EXIST::FUNCTION:
+RAND_DRBG_instantiate 4292 1_1_1 EXIST::FUNCTION:
+RAND_DRBG_uninstantiate 4293 1_1_1 EXIST::FUNCTION:
+RAND_DRBG_get_default 4294 1_1_1 EXIST::FUNCTION:
+RAND_DRBG_set 4295 1_1_1 EXIST::FUNCTION:
+RAND_DRBG_set_callbacks 4296 1_1_1 EXIST::FUNCTION:
+RAND_DRBG_new 4297 1_1_1 EXIST::FUNCTION:
+RAND_DRBG_set_reseed_interval 4298 1_1_1 EXIST::FUNCTION:
+RAND_DRBG_free 4299 1_1_1 EXIST::FUNCTION:
+RAND_DRBG_generate 4300 1_1_1 EXIST::FUNCTION:
+RAND_DRBG_reseed 4301 1_1_1 EXIST::FUNCTION:
+RAND_DRBG_set_ex_data 4302 1_1_1 EXIST::FUNCTION:
+RAND_DRBG_get_ex_data 4303 1_1_1 EXIST::FUNCTION:
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$@;