php-src/ext/openssl/tests/openssl_pkey_get_details_basic.phpt
Nikita Popov 7485978339
Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

32 lines
605 B
PHP

--TEST--
openssl_pkey_get_details() with EC key
--EXTENSIONS--
openssl
--SKIPIF--
<?php
if (!defined("OPENSSL_KEYTYPE_EC")) die("skip no EC available");
?>
--FILE--
<?php
$key = openssl_pkey_get_private("file://" . __DIR__ . "/private_ec.key");
print_r(openssl_pkey_get_details($key));
?>
--EXPECTF--
Array
(
[bits] => 256
[key] => -----BEGIN PUBLIC KEY-----%a
-----END PUBLIC KEY-----
[ec] => Array
(
[curve_name] => prime256v1
[curve_oid] => 1.2.840.10045.3.1.7
[x] => %a
[y] => %a
[d] => %a
)
[type] => 3
)