diff options
Diffstat (limited to 'tests/fips186-dsa.c')
-rw-r--r-- | tests/fips186-dsa.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/fips186-dsa.c b/tests/fips186-dsa.c index 95c28f16..b5f0cf0b 100644 --- a/tests/fips186-dsa.c +++ b/tests/fips186-dsa.c @@ -411,14 +411,14 @@ main (int argc, char **argv) debug = 1; } - gcry_control (GCRYCTL_DISABLE_SECMEM, 0); + xgcry_control (GCRYCTL_DISABLE_SECMEM, 0); if (!gcry_check_version (GCRYPT_VERSION)) die ("version mismatch\n"); - gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0); + xgcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0); if (debug) - gcry_control (GCRYCTL_SET_DEBUG_FLAGS, 1u, 0); + xgcry_control (GCRYCTL_SET_DEBUG_FLAGS, 1u, 0); /* No valuable keys are create, so we can speed up our RNG. */ - gcry_control (GCRYCTL_ENABLE_QUICK_RANDOM, 0); + xgcry_control (GCRYCTL_ENABLE_QUICK_RANDOM, 0); check_dsa_gen_186_2 (); |