summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorPauli <ppzgs1@gmail.com>2021-02-26 10:55:40 +1000
committerPauli <ppzgs1@gmail.com>2021-02-28 17:25:49 +1000
commitb98d550d807eccde3bd3f88f9831e002d3835cc3 (patch)
tree9cb7db1c711d61d26bb019bba7b5ebbbc91d017e /test
parent8d5b197b289988f8bc55e01e7ae27b82b16964b6 (diff)
prov: update rand implementations to have a params argument for the instantiate call
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/14310)
Diffstat (limited to 'test')
-rw-r--r--test/testutil/fake_random.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/testutil/fake_random.c b/test/testutil/fake_random.c
index 9d9b10feb1..f8b97d2287 100644
--- a/test/testutil/fake_random.c
+++ b/test/testutil/fake_random.c
@@ -48,7 +48,8 @@ static void fake_rand_freectx(void *vrng)
static int fake_rand_instantiate(void *vrng, ossl_unused unsigned int strength,
ossl_unused int prediction_resistance,
ossl_unused const unsigned char *pstr,
- size_t pstr_len)
+ size_t pstr_len,
+ ossl_unused const OSSL_PARAM params[])
{
FAKE_RAND *frng = (FAKE_RAND *)vrng;