|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-09-29 00:20 UTC] peterkokot at gmail dot com
[2017-09-29 03:11 UTC] chingis at wodby dot com
[2017-09-29 03:12 UTC] chingis at wodby dot com
-Status: Open
+Status: Closed
[2017-09-29 03:12 UTC] chingis at wodby dot com
[2017-09-29 12:31 UTC] peterkokot at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 19:00:02 2025 UTC |
Description: ------------ Function openssl_pkey_new does not work with libressl (2.5.5) on Alpine Linux (3.6) Test script: --------------- $rsa_key = openssl_pkey_new([ 'private_key_bits' => 1024, 'private_key_type' => OPENSSL_KEYTYPE_RSA ]); if (!$rsa_key) { throw new RuntimeException(openssl_error_string()); } echo 'OK', PHP_EOL;