--- a/wp/wp-includes/sodium_compat/autoload.php Thu Sep 29 08:06:27 2022 +0200
+++ b/wp/wp-includes/sodium_compat/autoload.php Fri Sep 05 18:40:08 2025 +0200
@@ -42,7 +42,9 @@
}
/* Explicitly, always load the Compat class: */
-require_once dirname(__FILE__) . '/src/Compat.php';
+if (!class_exists('ParagonIE_Sodium_Compat', false)) {
+ require_once dirname(__FILE__) . '/src/Compat.php';
+}
if (!class_exists('SodiumException', false)) {
require_once dirname(__FILE__) . '/src/SodiumException.php';
@@ -69,4 +71,5 @@
// Older versions of {PHP, ext/sodium} will not define these
require_once(dirname(__FILE__) . '/lib/php72compat.php');
}
+require_once(dirname(__FILE__) . '/lib/stream-xchacha20.php');
require_once(dirname(__FILE__) . '/lib/ristretto255.php');