1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Clean up test for GH-19369 - openssl_sign issue

This commit is contained in:
Jakub Zelenka
2025-08-09 23:02:46 +02:00
parent c8d7318daf
commit 066a977840

View File

@@ -10,10 +10,6 @@ if (!in_array('sha256WithRSAEncryption', openssl_get_md_methods(true))) {
?>
--FILE--
<?php
$digests = openssl_get_md_methods();
$digests_and_aliases = openssl_get_md_methods(true);
$digest_aliases = array_diff($digests_and_aliases, $digests);
$data = "Testing openssl_sign() with alias algorithm";
$privkey = "file://" . __DIR__ . "/private_rsa_1024.key";