Commit d9c58ee8a22 for php.net
commit d9c58ee8a2270b4c139a40001d75d31bd197217e
Author: Weilin Du <weilindu@php.net>
Date: Mon Aug 17 01:03:41 2026 +0800
ext/zip: Fix AES-192 and AES-256 support reporting in phpinfo() (#23319)
Fixed phpinfo() reporting AES-192 and AES-256 encryption support based on
AES-128 support.
diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c
index 3d6abde1c31..5330d78b36b 100644
--- a/ext/zip/php_zip.c
+++ b/ext/zip/php_zip.c
@@ -3321,9 +3321,9 @@ static PHP_MINFO_FUNCTION(zip)
php_info_print_table_row(2, "AES-128 encryption",
zip_encryption_method_supported(ZIP_EM_AES_128, 1) ? "Yes" : "No");
php_info_print_table_row(2, "AES-192 encryption",
- zip_encryption_method_supported(ZIP_EM_AES_128, 1) ? "Yes" : "No");
+ zip_encryption_method_supported(ZIP_EM_AES_192, 1) ? "Yes" : "No");
php_info_print_table_row(2, "AES-256 encryption",
- zip_encryption_method_supported(ZIP_EM_AES_128, 1) ? "Yes" : "No");
+ zip_encryption_method_supported(ZIP_EM_AES_256, 1) ? "Yes" : "No");
#endif
php_info_print_table_end();