]> granicus.if.org Git - php/commitdiff
Remove redundant example/test libsodium.php file
authorPeter Kokot <peterkokot@gmail.com>
Mon, 6 May 2019 00:10:06 +0000 (02:10 +0200)
committerPeter Kokot <peterkokot@gmail.com>
Wed, 8 May 2019 20:00:22 +0000 (22:00 +0200)
ext/sodium/libsodium.php [deleted file]

diff --git a/ext/sodium/libsodium.php b/ext/sodium/libsodium.php
deleted file mode 100644 (file)
index bb18faf..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-$br = (php_sapi_name() == "cli")? "":"<br>";
-
-if(!extension_loaded('libsodium')) {
-        dl('libsodium.' . PHP_SHLIB_SUFFIX);
-}
-$module = 'libsodium';
-$functions = get_extension_funcs($module);
-echo "Functions available in the test extension:$br\n";
-foreach($functions as $func) {
-    echo $func."$br\n";
-}
-echo "$br\n";
-$function = 'sodium_memzero';
-$exit = 0;
-if (extension_loaded($module)) {
-        $str = $function($module);
-} else {
-        $str = "Module $module is not compiled into PHP";
-        $exit = 255;
-}
-echo "$str\n";
-exit($exit);
-?>