• Home
  • Raw
  • Download

Lines Matching +full:no +full:- +full:engine

2  * Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved.
23 # include <openssl/engine.h>
31 ENGINE *h; in display_engine_list()
51 ENGINE *block[NUMTOADD]; in test_engines()
55 ENGINE *ptr; in test_engines()
58 ENGINE *new_h1 = NULL; in test_engines()
59 ENGINE *new_h2 = NULL; in test_engines()
60 ENGINE *new_h3 = NULL; in test_engines()
61 ENGINE *new_h4 = NULL; in test_engines()
130 * support engine got added. However, since we don't allow the config in test_engines()
138 TEST_info("Remove failed - probably no hardware support present"); in test_engines()
148 TEST_info("About to beef up the engine-type list"); in test_engines()
152 sprintf(buf, "Fake engine type %d", loop); in test_engines()
168 TEST_info("About to empty the engine-type list"); in test_engines()
203 static int test_pkey_meths(ENGINE *e, EVP_PKEY_METHOD **pmeth, in test_pkey_meths()
242 if (!RSA_set0_key(rsa, BN_bin2bn(n, sizeof(n)-1, NULL), in get_test_pkey()
243 BN_bin2bn(e, sizeof(e)-1, NULL), NULL)) { in get_test_pkey()
257 ENGINE *e = NULL; in test_redirect()
271 TEST_info("EVP_PKEY_encrypt test: no redirection"); in test_redirect()
280 /* Create a test ENGINE */ in test_redirect()
282 || !TEST_true(ENGINE_set_id(e, "Test redirect engine")) in test_redirect()
283 || !TEST_true(ENGINE_set_name(e, "Test redirect engine"))) in test_redirect()
287 * Try to create a context for this engine and test key. in test_redirect()
288 * Try setting test key engine. Both should fail because the in test_redirect()
289 * engine has no public key methods. in test_redirect()
300 /* Getting a context for test ENGINE should now succeed */ in test_redirect()
325 /* Create context with default engine: should not be redirected */ in test_redirect()
335 /* Set engine explicitly for test key */ in test_redirect()
341 /* Create context with default engine: should be redirected now */ in test_redirect()
360 ENGINE *e = NULL; in test_x509_dup_w_engine()
371 /* Dup without an engine */ in test_x509_dup_w_engine()
389 /* Create a test ENGINE */ in test_x509_dup_w_engine()
391 || !TEST_true(ENGINE_set_id(e, "Test dummy engine")) in test_x509_dup_w_engine()
392 || !TEST_true(ENGINE_set_name(e, "Test dummy engine"))) in test_x509_dup_w_engine()
407 /* Dup with an engine set on the key */ in test_x509_dup_w_engine()
436 * If the config file gets loaded, the dynamic engine will be loaded, in global_init()
447 TEST_note("No ENGINE support"); in setup_tests()