X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=providers%2Fimplementations%2Frands%2Ftest_rng.c;h=7303d36f2f6aa18f5ce97ba9a02fb9b3fc525dce;hb=363b1e5daea4a01889e6ff27148018be63d33b9b;hp=86fb979936ce7a4922b84dd5cad4114c7f675ba6;hpb=23c48d94d4d34eedc15fa65e0fa0e38a6137e09f;p=openssl.git diff --git a/providers/implementations/rands/test_rng.c b/providers/implementations/rands/test_rng.c index 86fb979936..7303d36f2f 100644 --- a/providers/implementations/rands/test_rng.c +++ b/providers/implementations/rands/test_rng.c @@ -8,7 +8,7 @@ */ #include -#include +#include #include #include #include "prov/providercommon.h" @@ -17,18 +17,18 @@ #include "prov/implementations.h" #include "drbg_local.h" -static OSSL_OP_rand_newctx_fn test_rng_new_wrapper; -static OSSL_OP_rand_freectx_fn test_rng_free; -static OSSL_OP_rand_instantiate_fn test_rng_instantiate_wrapper; -static OSSL_OP_rand_uninstantiate_fn test_rng_uninstantiate_wrapper; -static OSSL_OP_rand_generate_fn test_rng_generate_wrapper; -static OSSL_OP_rand_reseed_fn test_rng_reseed_wrapper; -static OSSL_OP_rand_nonce_fn test_rng_nonce; -static OSSL_OP_rand_settable_ctx_params_fn test_rng_settable_ctx_params; -static OSSL_OP_rand_set_ctx_params_fn test_rng_set_ctx_params; -static OSSL_OP_rand_gettable_ctx_params_fn test_rng_gettable_ctx_params; -static OSSL_OP_rand_get_ctx_params_fn test_rng_get_ctx_params; -static OSSL_OP_rand_verify_zeroization_fn test_rng_verify_zeroization; +static OSSL_FUNC_rand_newctx_fn test_rng_new_wrapper; +static OSSL_FUNC_rand_freectx_fn test_rng_free; +static OSSL_FUNC_rand_instantiate_fn test_rng_instantiate_wrapper; +static OSSL_FUNC_rand_uninstantiate_fn test_rng_uninstantiate_wrapper; +static OSSL_FUNC_rand_generate_fn test_rng_generate_wrapper; +static OSSL_FUNC_rand_reseed_fn test_rng_reseed_wrapper; +static OSSL_FUNC_rand_nonce_fn test_rng_nonce; +static OSSL_FUNC_rand_settable_ctx_params_fn test_rng_settable_ctx_params; +static OSSL_FUNC_rand_set_ctx_params_fn test_rng_set_ctx_params; +static OSSL_FUNC_rand_gettable_ctx_params_fn test_rng_gettable_ctx_params; +static OSSL_FUNC_rand_get_ctx_params_fn test_rng_get_ctx_params; +static OSSL_FUNC_rand_verify_zeroization_fn test_rng_verify_zeroization; typedef struct { unsigned char *entropy, *nonce;