????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.225.56.185 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/openssl/tests/ |
Upload File : |
--TEST-- OpenSSL private key functions --SKIPIF-- <?php if (!extension_loaded("openssl")) die("skip"); if (!@openssl_pkey_new()) die("skip cannot create private key"); ?> --FILE-- <?php echo "Creating private key\n"; /* stack up some entropy; performance is not critical, * and being slow will most likely even help the test. */ for ($z = "", $i = 0; $i < 1024; $i++) { $z .= $i * $i; if (function_exists("usleep")) usleep($i); } $privkey = openssl_pkey_new(); if ($privkey === false) die("failed to create private key"); $passphrase = "banana"; $key_file_name = tempnam("/tmp", "ssl"); if ($key_file_name === false) die("failed to get a temporary filename!"); echo "Export key to file\n"; openssl_pkey_export_to_file($privkey, $key_file_name, $passphrase) or die("failed to export to file $key_file_name"); echo "Load key from file - array syntax\n"; $loaded_key = openssl_pkey_get_private(array("file://$key_file_name", $passphrase)); if ($loaded_key === false) die("failed to load key using array syntax"); openssl_pkey_free($loaded_key); echo "Load key using direct syntax\n"; $loaded_key = openssl_pkey_get_private("file://$key_file_name", $passphrase); if ($loaded_key === false) die("failed to load key using direct syntax"); openssl_pkey_free($loaded_key); echo "Load key manually and use string syntax\n"; $key_content = file_get_contents($key_file_name); $loaded_key = openssl_pkey_get_private($key_content, $passphrase); if ($loaded_key === false) die("failed to load key using string syntax"); openssl_pkey_free($loaded_key); echo "OK!\n"; @unlink($key_file_name); ?> --EXPECT-- Creating private key Export key to file Load key from file - array syntax Load key using direct syntax Load key manually and use string syntax OK!