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
No known key found for this signature in database
GPG key ID: 1C0779DC5C0A9DE4

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";