Searched refs:openssl (Results 1 – 25 of 268) sorted by relevance
1234567891011
/php-src/tests/run-test/ |
H A D | extensions-shared.phpt | 4 openssl 8 if (false !== stripos(`$php -n -m`, 'openssl')) { 9 die('skip openssl is built static'); 11 …IRECTORY_SEPARATOR . (substr(PHP_OS, 0, 3) === "WIN" ? "php_openssl." : "openssl.") . PHP_SHLIB_SU… 12 if( !file_exists($ext_module) ) die('skip openssl shared extension not found'); 17 var_dump(extension_loaded('openssl'));
|
/php-src/ext/openssl/ |
H A D | config.w32 | 3 ARG_WITH("openssl", "OpenSSL support", "no,shared"); 5 ARG_WITH("openssl-legacy-provider", "OPENSSL: Load legacy algorithm provider in addition to default… 7 ARG_WITH("openssl-argon2", "OPENSSL: Enable argon2 password hashing (requires OpenSSL >= 3.2)", "no… 10 var ret = SETUP_OPENSSL("openssl", PHP_OPENSSL); 13 EXTENSION("openssl", "openssl.c openssl_pwhash.c xp_ssl.c"); 14 AC_DEFINE("HAVE_OPENSSL_EXT", 1, "Define to 1 if the PHP extension 'openssl' is available."); 21 …} else if (!CHECK_FUNC_IN_HEADER("openssl/thread.h", "OSSL_set_max_threads", PHP_PHP_BUILD + "\\in…
|
H A D | config0.m4 | 1 PHP_ARG_WITH([openssl], 3 [AS_HELP_STRING([--with-openssl], 13 PHP_ARG_WITH([openssl-legacy-provider], 15 [AS_HELP_STRING([--with-openssl-legacy-provider], 20 PHP_ARG_WITH([openssl-argon2], 22 [AS_HELP_STRING([--with-openssl-argon2], 28 PHP_NEW_EXTENSION([openssl], 29 [openssl.c openssl_pwhash.c xp_ssl.c], 34 [Define to 1 if the PHP extension 'openssl' is available.])])
|
H A D | php_openssl.h | 81 ZEND_BEGIN_MODULE_GLOBALS(openssl) 84 ZEND_END_MODULE_GLOBALS(openssl) 86 #define OPENSSL_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(openssl, v) 187 PHP_MINIT_FUNCTION(openssl); 188 PHP_MSHUTDOWN_FUNCTION(openssl); 189 PHP_MINFO_FUNCTION(openssl); 190 PHP_GINIT_FUNCTION(openssl); 191 PHP_GSHUTDOWN_FUNCTION(openssl);
|
/php-src/ext/openssl/tests/ |
H A D | openssl_password_compat.phpt | 2 Compatibility of password_hash (libsodium / openssl) 4 openssl 32 /* hash with libsodium / verify with openssl */ 36 /* hash with openssl / verify with libsodium */
|
H A D | openssl_password_compat2.phpt | 2 Compatibility of password_hash (libargon2 / openssl) 4 openssl 32 /* hash with libargon2 / verify with openssl */ 36 /* hash with openssl / verify with libargon2 */
|
H A D | stream_server_reneg_limit.phpt | 4 openssl 8 exec('openssl help', $out, $code); 9 if ($code > 0) die("skip couldn't locate openssl binary"); 19 * This test uses the openssl binary directly to initiate renegotiation. At this time it's not 20 * possible renegotiate the TLS handshake in PHP userland, so using the openssl s_client binary 76 $cmd = 'openssl s_client -connect 127.0.0.1:64321';
|
H A D | bug80747.phpt | 4 openssl 9 'config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf',
|
H A D | gh16357.phpt | 2 GH-16357 (openssl may modify member types of certificate arrays) 4 openssl
|
H A D | bug50293.phpt | 2 Bug #50293 (Several openssl functions ignore the VCWD) 4 openssl 9 $config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf';
|
H A D | bug25614.phpt | 2 openssl: get public key from generated private key 4 openssl
|
H A D | openssl_get_cert_locations_basic.phpt | 4 openssl 7 // openssl locations differ per distro.
|
H A D | bug79145.phpt | 2 Bug #79145 (openssl memory leak) 4 openssl
|
H A D | bug73711.phpt | 4 openssl 11 $config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf';
|
H A D | bug61930.phpt | 2 Bug #61930: openssl corrupts ssl key resource when using openssl_get_publickey() 4 openssl
|
H A D | check_default_conf_path.phpt | 4 openssl 30 string(%d) "c:\program files%r( \(x86\)|)%r\common files\ssl\openssl.cnf"
|
H A D | bug73833.phpt | 4 openssl 8 $conf = ['config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf'];
|
H A D | bug72165.phpt | 4 openssl 8 $options = ['config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf'];
|
H A D | bug52093.phpt | 4 openssl 18 $options = ['config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf'];
|
H A D | bug60632.phpt | 4 openssl 13 'config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf',
|
H A D | openssl_encrypt_error.phpt | 4 openssl 9 $password = "openssl";
|
H A D | bug36732.phpt | 4 openssl 10 "config" => __DIR__. DIRECTORY_SEPARATOR . "openssl.cnf",
|
H A D | bug55259.phpt | 2 Bug #55259 (openssl extension does not get the DH parameters from DH key resource) 4 openssl
|
/php-src/ext/ftp/ |
H A D | config.m4 | 12 [Explicitly enable FTP over SSL support when building without openssl 13 extension or when using phpize. If the openssl extension is enabled at the 14 configure step (--with-openssl), FTP-SSL is enabled implicitly regardless of
|
/php-src/ext/phar/ |
H A D | config.m4 | 22 AC_MSG_CHECKING([for phar openssl support]) 24 [AC_MSG_RESULT([no (shared openssl)])],
|
Completed in 35 milliseconds
1234567891011