forked from php/pecl-php-blenc
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.xml
89 lines (89 loc) · 3 KB
/
package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.9.4" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
http://pear.php.net/dtd/tasks-1.0.xsd
http://pear.php.net/dtd/package-2.0
http://pear.php.net/dtd/package-2.0.xsd">
<name>blenc</name>
<channel>pecl.php.net</channel>
<summary>BLowfish ENCryption for PHP Scripts</summary>
<description>
BLENC is an extension that permit to protect PHP source scripts with Blowfish Encription.
BLENC hooks into the Zend Engine, allowing for transparent execution of PHP scripts previously encoded with BLENC.
It is not designed for complete security (it is still possible to disassemble the script into op codes using a package such as XDebug), however it does keep people out of your code and make reverse engineering difficult.
</description>
<lead>
<name>Tuukka Pasanen</name>
<user>illuusio</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<lead>
<name>John Coggeshall</name>
<user>john</user>
<email>[email protected]</email>
<active>no</active>
</lead>
<lead>
<name>Giuseppe Chiesa</name>
<user>gchiesa</user>
<email>[email protected]</email>
<active>no</active>
</lead>
<date>2023-02-07</date>
<time>16:00:00</time>
<version>
<release>1.4.0</release>
<api>1.1.4b</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
Upgraded to works with latest PHP version
</notes>
<contents>
<dir name="/">
<dir name="tests">
<file name="001.phpt" role="test" />
<file name="001.phpt" role="test" />
<file name="002.phpt" role="test" />
<file name="003.phpt" role="test" />
<file name="004.phpt" role="test" />
<file name="005.phpt" role="test" />
<file name="blenc.ini" role="test" />
<file name="input-large.php" role="test" />
<file name="input.php" role="test" />
<file name="keys.txt" role="test" />
<file name="output-1.1.4b.phpe" role="test" />
<file name="password.txt" role="test" />
</dir> <!-- //tests -->
<file name="bf_algo.c" role="src" />
<file name="bf_algo.h" role="src" />
<file name="blenc.c" role="src" />
<file name="blenc_protect.h" role="src" />
<file name="config.m4" role="src" />
<file name="config.w32" role="src" />
<file name="CREDITS" role="doc" />
<file name="LICENSE" role="doc" />
<file name="TODO" role="doc" />
<file name="php_blenc.h" role="src" />
<file name="tools/blencode.php" role="src" />
</dir> <!-- / -->
</contents>
<dependencies>
<required>
<php>
<min>4.3.0</min>
</php>
<pearinstaller>
<min>1.4.0b1</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>blenc</providesextension>
<extsrcrelease>
<configureoption default="autodetect" name="enable-blenc" prompt="Enable BLENC?" />
</extsrcrelease>
</package>