diff options
-rw-r--r-- | ext/openssl/tests/bug36732.phpt | 2 | ||||
-rw-r--r-- | ext/openssl/tests/bug55646.phpt | 2 | ||||
-rw-r--r-- | ext/openssl/tests/bug73833.phpt | 2 | ||||
-rw-r--r-- | ext/openssl/tests/openssl.cnf | 7 |
4 files changed, 10 insertions, 3 deletions
diff --git a/ext/openssl/tests/bug36732.phpt b/ext/openssl/tests/bug36732.phpt index ec8fedb9d4..87fad9843e 100644 --- a/ext/openssl/tests/bug36732.phpt +++ b/ext/openssl/tests/bug36732.phpt @@ -10,7 +10,7 @@ if (OPENSSL_VERSION_NUMBER < 0x009070af) die("skip"); $configargs = array( "req_extensions" => "v3_req", "x509_extensions" => "usr_cert", - "config" => __DIR__."/openssl.cnf", + "config" => __DIR__. DIRECTORY_SEPARATOR . "openssl.cnf", ); $dn = array( diff --git a/ext/openssl/tests/bug55646.phpt b/ext/openssl/tests/bug55646.phpt index c11284d72d..6c504588c8 100644 --- a/ext/openssl/tests/bug55646.phpt +++ b/ext/openssl/tests/bug55646.phpt @@ -19,7 +19,7 @@ $csr_info = array( $private = openssl_pkey_new($config); while (openssl_error_string()) {} $csr_res = openssl_csr_new($csr_info, $private, - ['config' => __DIR__."/openssl.cnf"]); + ['config' => __DIR__. DIRECTORY_SEPARATOR . "openssl.cnf"]); if (!$csr_res) { while ($e = openssl_error_string()) { $err = $e; } die("Failed; last error: $err"); diff --git a/ext/openssl/tests/bug73833.phpt b/ext/openssl/tests/bug73833.phpt index cf46092a46..2ea5f9e411 100644 --- a/ext/openssl/tests/bug73833.phpt +++ b/ext/openssl/tests/bug73833.phpt @@ -7,7 +7,7 @@ if (!extension_loaded("openssl")) die("skip openssl not loaded"); --FILE-- <?php $passwords = ["abc\x00defghijkl", "abcdefghikjl"]; -$conf = ['config' => __DIR__.'/openssl.cnf']; +$conf = ['config' => __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf']; foreach($passwords as $password) { $key = openssl_pkey_new($conf); diff --git a/ext/openssl/tests/openssl.cnf b/ext/openssl/tests/openssl.cnf index 4ed40fdc8a..f3025aeb5c 100644 --- a/ext/openssl/tests/openssl.cnf +++ b/ext/openssl/tests/openssl.cnf @@ -1,3 +1,10 @@ +oid_section = new_oids + +[ new_oids ] +# Example policies to test their +tsa_policy1 = 1.2.3.4.1 +tsa_policy2 = 1.2.3.4.5.6 + [ req ] default_bits = 1024 default_keyfile = privkey.pem |