[prev in list] [next in list] [prev in thread] [next in thread] 

List:       pecl-cvs
Subject:    [PECL-CVS] =?utf-8?q?svn:_/pecl/blenc/trunk/_CHANGELOG_blenc=5Fprotect.h_blenc=5Fprotect.h.dist_pack
From:       Giuseppe_Chiesa <gchiesa () php ! net>
Date:       2013-05-31 9:25:59
Message-ID: svn-gchiesa-1369992359-330423-969588038 () svn ! php ! net
[Download RAW message or body]

gchiesa                                  Fri, 31 May 2013 09:25:59 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=330423

Log:
Renamed blenc_protect.h.dist to blenc_protect.h in order to permit automatic
installation with "pecl install" command.

Changed paths:
    U   pecl/blenc/trunk/CHANGELOG
    A   pecl/blenc/trunk/blenc_protect.h
    D   pecl/blenc/trunk/blenc_protect.h.dist
    U   pecl/blenc/trunk/package.xml

Modified: pecl/blenc/trunk/CHANGELOG
===================================================================
--- pecl/blenc/trunk/CHANGELOG	2013-05-30 22:51:47 UTC (rev 330422)
+++ pecl/blenc/trunk/CHANGELOG	2013-05-31 09:25:59 UTC (rev 330423)
@@ -1,3 +1,8 @@
+2013-05-31
+--
+Renamed blenc_protect.h.dist to blenc_protect.h in order to permit automatic \
installation with "pecl install" command. +
+
 2013-05-30
 --
 Update package.xml to V2, added CHANGELOG and a simple script "blencode.php" to \
encode sources in tools/ directory. Tagged sources as 1.1.0b

Added: pecl/blenc/trunk/blenc_protect.h
===================================================================
--- pecl/blenc/trunk/blenc_protect.h	                        (rev 0)
+++ pecl/blenc/trunk/blenc_protect.h	2013-05-31 09:25:59 UTC (rev 330423)
@@ -0,0 +1,62 @@
+/*
+  +----------------------------------------------------------------------+
+  | PHP Version 5                                                        |
+  +----------------------------------------------------------------------+
+  | Copyright (c) 1997-2013 The PHP Group                                |
+  +----------------------------------------------------------------------+
+  | This source file is subject to version 3.0 of the PHP license,       |
+  | that is bundled with this package in the file LICENSE, and is        |
+  | available through the world-wide-web at the following url:           |
+  | http://www.php.net/license/3_0.txt.                                  |
+  | If you did not receive a copy of the PHP license and are unable to   |
+  | obtain it through the world-wide-web, please send a note to          |
+  | license@php.net so we can mail you a copy immediately.               |
+  +----------------------------------------------------------------------+
+  | Author: John Coggeshall <john@php.net>                               |
+  |         Giuseppe Chiesa <mail@giuseppechiesa.it>					 |
+  +----------------------------------------------------------------------+
+*/
+
+/*
+ * BLENC_PROTECT.H
+ */
+#ifndef BLENC_PROTECT_H
+#define BLENC_PROTECT_H
+
+/*
+ * BLENC_PROTECT_COMP3 : It's a better way to protect the expiration date into the \
module executable + *						 and preventing reverse engineering.
+ * 						 With this declaration the expiration date must be into the comp3 format.
+ *					     Please see below for further informations.
+ */
+#define BLENC_PROTECT_COMP3
+
+/*
+ * BLENC_PROTECT_MAIN_KEY : It's the encryption key used to encode the keyfile \
available for powerusers on the + * 							system. With this key hard encoded nobody \
could be able to decrypt the PHP sources + * 							protected with BLENC.
+ *							Use a strong key!
+ *							ex: create a strong key using apg with command
+ *							~$ apg -a1 -m32 -x32 -E "\\\/\""
+ */
+#define BLENC_PROTECT_MAIN_KEY 	"0123456789abcdef0123456789abcdef"
+
+/*
+ * BLENC_PROTECT_EXPIRE : It's the expiration date for the module extension. After \
this date the module will not + * 						  decrypt sources.
+ *						  The date must have different formats according with BLENC_PROTECT_COMP3 \
definition: + *						  - If BLENC_PROTECT_COMP3 is undefined the date must be in the \
format: + * 							GG-MM-AAAA
+ * 							(ex. 30-04-2013)
+ * #define BLENC_PROTECT_EXPIRE	"30-04-2013"
+ *
+ *
+ *						  - If BLENC_PROTECT COMP3 id defined the date must follow the comp3 \
compression (stronger against + *							reverse engineering techniques). The format \
is the following: + *							{ '\xAA', '\xAA', '\xMM', '\xGG' }
+ *
+ *							ex. 30-04-2013 -> { '\x20', '\x13', '\x04', '\x30' }
+ */
+#define BLENC_PROTECT_EXPIRE 	{ '\x20', '\x21', '\x02', '\x12' }
+
+#endif

Deleted: pecl/blenc/trunk/blenc_protect.h.dist
===================================================================
--- pecl/blenc/trunk/blenc_protect.h.dist	2013-05-30 22:51:47 UTC (rev 330422)
+++ pecl/blenc/trunk/blenc_protect.h.dist	2013-05-31 09:25:59 UTC (rev 330423)
@@ -1,62 +0,0 @@
-/*
-  +----------------------------------------------------------------------+
-  | PHP Version 5                                                        |
-  +----------------------------------------------------------------------+
-  | Copyright (c) 1997-2013 The PHP Group                                |
-  +----------------------------------------------------------------------+
-  | This source file is subject to version 3.0 of the PHP license,       |
-  | that is bundled with this package in the file LICENSE, and is        |
-  | available through the world-wide-web at the following url:           |
-  | http://www.php.net/license/3_0.txt.                                  |
-  | If you did not receive a copy of the PHP license and are unable to   |
-  | obtain it through the world-wide-web, please send a note to          |
-  | license@php.net so we can mail you a copy immediately.               |
-  +----------------------------------------------------------------------+
-  | Author: John Coggeshall <john@php.net>                               |
-  |         Giuseppe Chiesa <mail@giuseppechiesa.it>					 |
-  +----------------------------------------------------------------------+
-*/
-
-/*
- * BLENC_PROTECT.H
- */
-#ifndef BLENC_PROTECT_H
-#define BLENC_PROTECT_H
-
-/*
- * BLENC_PROTECT_COMP3 : It's a better way to protect the expiration date into the \
                module executable
- *						 and preventing reverse engineering.
- * 						 With this declaration the expiration date must be into the comp3 format.
- *					     Please see below for further informations.
- */
-#define BLENC_PROTECT_COMP3
-
-/*
- * BLENC_PROTECT_MAIN_KEY : It's the encryption key used to encode the keyfile \
                available for powerusers on the
- * 							system. With this key hard encoded nobody could be able to decrypt the PHP \
                sources
- * 							protected with BLENC.
- *							Use a strong key!
- *							ex: create a strong key using apg with command
- *							~$ apg -a1 -m32 -x32 -E "\\\/\""
- */
-#define BLENC_PROTECT_MAIN_KEY 	"0123456789abcdef0123456789abcdef"
-
-/*
- * BLENC_PROTECT_EXPIRE : It's the expiration date for the module extension. After \
                this date the module will not
- * 						  decrypt sources.
- *						  The date must have different formats according with BLENC_PROTECT_COMP3 \
                definition:
- *						  - If BLENC_PROTECT_COMP3 is undefined the date must be in the format:
- * 							GG-MM-AAAA
- * 							(ex. 30-04-2013)
- * #define BLENC_PROTECT_EXPIRE	"30-04-2013"
- *
- *
- *						  - If BLENC_PROTECT COMP3 id defined the date must follow the comp3 \
                compression (stronger against
- *							reverse engineering techniques). The format is the following:
- *							{ '\xAA', '\xAA', '\xMM', '\xGG' }
- *
- *							ex. 30-04-2013 -> { '\x20', '\x13', '\x04', '\x30' }
- */
-#define BLENC_PROTECT_EXPIRE 	{ '\x20', '\x21', '\x02', '\x12' }
-
-#endif

Modified: pecl/blenc/trunk/package.xml
===================================================================
--- pecl/blenc/trunk/package.xml	2013-05-30 22:51:47 UTC (rev 330422)
+++ pecl/blenc/trunk/package.xml	2013-05-31 09:25:59 UTC (rev 330423)
@@ -26,11 +26,11 @@
   <email>gchiesa@php.net</email>
   <active>yes</active>
  </lead>
- <date>2013-05-30</date>
- <time>16:18:09</time>
+ <date>2013-05-31</date>
+ <time>11:22:00</time>
  <version>
-  <release>1.1.0b</release>
-  <api>1.1.0b</api>
+  <release>1.1.1b</release>
+  <api>1.1.1b</api>
  </version>
  <stability>
   <release>beta</release>
@@ -48,7 +48,7 @@
    <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.dist" 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" />



-- 
PECL CVS Mailing List 
To unsubscribe, visit: http://www.php.net/unsub.php

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic