• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/apr-util/test/

Lines Matching refs:driver

35     const apr_crypto_driver_t *driver = NULL;
42 rv = apr_crypto_get_driver(&driver, name, params, &result, pool);
45 apr_psprintf(pool, "Crypto driver '%s' not implemented", (char *)name));
50 apr_psprintf(pool, "Crypto driver '%s' DSO could not be opened", (char *)name));
62 ABTS_ASSERT(tc, "apr_crypto_get_driver returned NULL", driver != NULL);
63 if (!driver || rv) {
67 return driver;
97 const apr_crypto_driver_t *driver)
102 if (!driver) {
107 apr_crypto_make(&f, driver, "engine=openssl", pool);
115 const apr_crypto_driver_t *driver, const apr_crypto_t *f,
140 apr_psprintf(pool, "skipped: %s %s key return APR_ENOCIPHER: error %d: %s (%s)\n", description, apr_crypto_driver_name(driver), result->rc, result->reason ? result->reason : "", result->msg ? result->msg : ""));
147 description, apr_crypto_driver_name(driver), rv, result->rc,
168 const apr_crypto_driver_t *driver, const apr_crypto_t *f,
191 description, apr_crypto_driver_name(driver), result->rc,
199 description, apr_crypto_driver_name(driver), rv, result->rc,
217 const apr_crypto_driver_t *driver, const apr_crypto_t *f,
249 description, apr_crypto_driver_name(driver), result->rc,
257 description, apr_crypto_driver_name(driver), rv, result->rc,
275 const apr_crypto_driver_t *driver, const apr_crypto_t *f,
287 if (!driver || !f || !key || !in) {
301 description, apr_crypto_driver_name(driver), rv, result->rc,
330 description, apr_crypto_driver_name(driver), rv, result->rc,
348 description, apr_crypto_driver_name(driver), rv, result->rc,
367 const apr_crypto_driver_t *driver, const apr_crypto_t *f,
379 if (!driver || !f || !key || !cipherText) {
393 description, apr_crypto_driver_name(driver), rv, result->rc,
414 description, apr_crypto_driver_name(driver), rv, result->rc,
432 description, apr_crypto_driver_name(driver), rv, result->rc,
454 * data must point at an array of two driver structures. Data will be encrypted
455 * with the first driver, and decrypted with the second.
573 const apr_crypto_driver_t *driver;
577 driver = get_openssl_driver(tc, pool);
579 f = make(tc, pool, driver);
580 keysecret(tc, pool, driver, f, APR_KEY_AES_256, APR_MODE_CBC, 1, 32,
592 const apr_crypto_driver_t *driver;
596 driver = get_nss_driver(tc, pool);
598 f = make(tc, pool, driver);
599 keysecret(tc, pool, driver, f, APR_KEY_AES_256, APR_MODE_CBC, 1, 32,
611 const apr_crypto_driver_t *driver;
615 driver = get_commoncrypto_driver(tc, pool);
617 f = make(tc, pool, driver);
618 keysecret(tc, pool, driver, f, APR_KEY_AES_256, APR_MODE_CBC, 1, 32,
1156 const apr_crypto_driver_t *driver;
1165 driver = get_openssl_driver(tc, pool);
1166 if (driver) {
1168 f = make(tc, pool, driver);
1199 const apr_crypto_driver_t *driver;
1208 driver = get_nss_driver(tc, pool);
1209 if (driver) {
1211 f = make(tc, pool, driver);
1242 const apr_crypto_driver_t *driver;
1251 driver = get_commoncrypto_driver(tc, pool);
1252 if (driver) {
1254 f = make(tc, pool, driver);
1285 const apr_crypto_driver_t *driver;
1292 driver = get_openssl_driver(tc, pool);
1293 if (driver) {
1295 f = make(tc, pool, driver);
1318 const apr_crypto_driver_t *driver;
1325 driver = get_nss_driver(tc, pool);
1326 if (driver) {
1328 f = make(tc, pool, driver);
1351 const apr_crypto_driver_t *driver;
1358 driver = get_commoncrypto_driver(tc, pool);
1359 if (driver) {
1361 f = make(tc, pool, driver);