Skip to content
This repository has been archived by the owner on Nov 11, 2021. It is now read-only.

Commit

Permalink
New package.xml description, BLENC now display version in phpinfo.
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuseppe Chiesa committed Jun 12, 2013
1 parent 1ddd615 commit 0608a35
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 126 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2013-06-12
--
Some fix on config.m4, new package.xml description, BLENC now display version in phpinfo.


2013-05-31
--
Renamed blenc_protect.h.dist to blenc_protect.h in order to permit automatic installation with "pecl install" command.
Expand Down
1 change: 1 addition & 0 deletions blenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ PHP_MINFO_FUNCTION(blenc)
else
php_info_print_table_row(2, "Blenc support", "Enabled");

php_info_print_table_row(2, "Blenc version", BLENC_VERSION);
php_info_print_table_row(2, "Blenc expire date", BL_G(expire_date));

php_info_print_table_end();
Expand Down
113 changes: 0 additions & 113 deletions blencode.php

This file was deleted.

21 changes: 9 additions & 12 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ 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>Transparent PHP Script Encryption using Blowfish</summary>
<description>BLENC is an extension which hooks into the Zend Engine, allowing for
transparent encryption and execution of PHP scripts using the blowfish
algorithm. 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.

<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>John Coggeshall</name>
Expand All @@ -26,11 +23,11 @@ reverse engineering difficult.
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2013-05-31</date>
<time>11:22:00</time>
<date>2013-06-12</date>
<time>19:11:00</time>
<version>
<release>1.1.1b</release>
<api>1.1.1b</api>
<release>1.1.2b</release>
<api>1.1.2b</api>
</version>
<stability>
<release>beta</release>
Expand Down
2 changes: 1 addition & 1 deletion php_blenc.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#define ZEND_ENGINE_2_1
#endif

#define BLENC_VERSION "1.1.1b"
#define BLENC_VERSION "1.1.2b"
#define BLENC_IDENT "BLENC"
#define BLENC_BUFSIZE 4092

Expand Down

0 comments on commit 0608a35

Please sign in to comment.