File tree Expand file tree Collapse file tree 4 files changed +28
-14
lines changed Expand file tree Collapse file tree 4 files changed +28
-14
lines changed Original file line number Diff line number Diff line change 11# Release history
22
3+ ## 0.3.1 (devel)
4+ - Fixed segfault on PHP 5 in setting KDF key length and PBKDF2 iterations
5+
36## 0.3.0 (devel)
47- Fixed compilation with OpenSSL 1.1 and PHP 7.1
58- Added KDF abstract class to be a parent for all key derivation function classes
Original file line number Diff line number Diff line change 22
33List of all features for the release
44
5- ## 0.3.0
6- - Fixed compilation with OpenSSL 1.1 and PHP 7.1
7- - Added KDF abstract class to be a parent for all key derivation function classes
8- - Added PBKDF2 class extending KDF class and implementing PBKDF2
9- - Renamed HashException code ALGORITHM_NOT_FOUND to HASH_ALGORITHM_NOT_FOUND
10- - Renamed MACException code ALGORITHM_NOT_FOUND to MAC_ALGORITHM_NOT_FOUND
5+ ## 0.3.1
6+ - Fixed segfault on PHP 5 in setting KDF key length and PBKDF2 iterations
Original file line number Diff line number Diff line change 1616 <email >bukka@php.net</email >
1717 <active >yes</active >
1818 </lead >
19- <date >2016-12-14 </date >
19+ <date >2016-12-15 </date >
2020 <version >
21- <release >0.3.0 </release >
21+ <release >0.3.1 </release >
2222 <api >0.3.0</api >
2323 </version >
2424 <stability >
2727 </stability >
2828 <license uri =" http://www.php.net/license" >PHP 3.01</license >
2929 <notes ><![CDATA[
30- * Fixed compilation with OpenSSL 1.1 and PHP 7.1
31- * Added KDF abstract class to be a parent for all key derivation function classes
32- * Added PBKDF2 class extending KDF class and implementing PBKDF2
33- * Renamed HashException code ALGORITHM_NOT_FOUND to HASH_ALGORITHM_NOT_FOUND
34- * Renamed MACException code ALGORITHM_NOT_FOUND to MAC_ALGORITHM_NOT_FOUND
30+ * Fixed segfault on PHP 5 in setting KDF key length and PBKDF2 iterations
3531 ]]> </notes >
3632 <contents >
3733 <dir name =" /" >
193189 <providesextension >crypto</providesextension >
194190 <extsrcrelease />
195191 <changelog >
192+ <release >
193+ <date >2016-12-14</date >
194+ <version >
195+ <release >0.3.0</release >
196+ <api >0.3.0</api >
197+ </version >
198+ <stability >
199+ <release >devel</release >
200+ <api >devel</api >
201+ </stability >
202+ <license uri =" http://www.php.net/license" >PHP 3.01</license >
203+ <notes ><![CDATA[
204+ * Fixed compilation with OpenSSL 1.1 and PHP 7.1
205+ * Added KDF abstract class to be a parent for all key derivation function classes
206+ * Added PBKDF2 class extending KDF class and implementing PBKDF2
207+ * Renamed HashException code ALGORITHM_NOT_FOUND to HASH_ALGORITHM_NOT_FOUND
208+ * Renamed MACException code ALGORITHM_NOT_FOUND to MAC_ALGORITHM_NOT_FOUND
209+ ]]> </notes >
210+ </release >
196211 <release >
197212 <date >2015-11-25</date >
198213 <version >
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ extern zend_module_entry crypto_module_entry;
4848#include "phpc/phpc.h"
4949
5050/* Crypto version */
51- #define PHP_CRYPTO_VERSION "0.3.0 "
51+ #define PHP_CRYPTO_VERSION "0.3.1 "
5252
5353
5454/* NAMESPACE */
You can’t perform that action at this time.
0 commit comments