/[mcrypt]/libmcrypt/NEWS
ViewVC logotype

Contents of /libmcrypt/NEWS

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.46 - (show annotations)
Fri Aug 16 10:56:51 2002 UTC (21 years, 8 months ago) by nmav
Branch: MAIN
CVS Tags: libmcrypt_2_5_3
Changes since 1.45: +2 -1 lines
*** empty log message ***

1 August 16 2002: (version 2.5.3)
2 - The const keyword is now used in the exported functions
3 - Corrected problem in libltdl's configure script
4
5 June 22 2002: (version 2.5.2)
6 - Fixed bug in the returned IV size of ARCFOUR
7 - Fixed bug in mcrypt_readdir() which prevented the test programs
8 to work.
9
10 May 30 2002: (version 2.5.1)
11 - Corrected the license. COPYING.LIB (LGPL) is now included
12 instead of COPYING (GPL)
13
14 Mar 09th 2002: (version 2.5.0)
15 - Several corrections in stream and block cipher modes.
16 - Added --disable-dynamic-loading configure option
17 - The IV modifications in Arcfour and Wake have been disabled
18 by default.
19 - Added CTR mode for block ciphers.
20 - Fixes in nCFB and nOFB modes.
21 - Added mcrypt_enc_get_state() function.
22 - Added test for nCFB, CFB, nOFB and CTR with AES
23
24 Feb 14th 2002:
25 - nOFB and nCFB modes can now encrypt and decrypt plaintext
26 of size less than block size.
27
28 Feb 1st 2002: (version 2.4.22)
29 - Corrected nasty bug in init code
30
31 Jan 31 2002: (version 2.4.21)
32 - Corrected problems in Makefiles
33 - Minor bug fixes
34
35 Jan 24th 2002: (version 2.4.20)
36 - Corrected bug in mcrypt_module_open()
37
38 Dec 15th 2001: (version 2.4.19)
39 - Cleanups in the code.
40
41 Nov 9th 2001: (version 2.4.18)
42 - Fixed memory leak
43
44 Sep 24th 2001: (version 2.4.17)
45 - Corrected bug in mcrypt_module_get_supported_key_size()
46 - Removed unneeded strdup declaration.
47 - Corrected bug in ofb mode (reported by Phillip Oleson)
48 - Corrected some bugs in configure.in (patch by Phillip Oleson)
49
50 Sep 8th 2001: (version 2.4.16)
51 - Added option to include algorithms and modes into the library
52 (making possible a static library)
53 eg. './configure --with-included-algos="rijndael-128 twofish cbc ecb"' will add
54 rijndael, twofish with cbc and ecb into the library
55 - Added nCFB mode (experimental)
56 - Changed mcrypt_strerror() return value to const.
57
58 Jul 12th 2001:
59 - Corrected readdir_r() behavior in Solaris
60 (Patch by Andrew Libby <alibby@commnav.com>)
61
62 June 9th 2001: (version 2.4.15)
63 - Check if the installed libltdl includes lt_dlmutex_register()
64 - Fixes in libmcrypt-config script
65
66 May 18th 2001: (version 2.4.13)
67 - Corrects behaviour when an older libltdl is found in the system.
68 - Updated mcrypt_mutex_register()
69
70 May 17th 2001: (version 2.4.12)
71 - Updated the libltdl library included
72 - Several fixes in modules
73 - Added scripts to allow easier and faster library version detection
74
75 April 30th 2001: (version 2.4.11)
76 - Corrected memory leaks in mcrypt_module_close()
77
78 March 18th 2001: (version 2.4.10)
79 - Corrected bugs in blowfish and blowfish-compat
80
81 January 23th 2001: (version 2.4.9-beta)
82 - Due to an endianness handling problem Blowfish algorithm was not compatible
83 with other implementations. Now it has been corrected. If you want
84 to access the old algorithm used use the "blowfish-compat" module.
85 - Fixes in mcrypt_list_algorithms() for some systems. Bugs pointed out by
86 Jonathan Woolmington <jwool@ind.tansu.com.au>
87 - Fixes in stream mode.
88 - mcrypt_generic_init() no longer fails if smaller key is used. It uses
89 the most appropriate key size of the algorithm and pads with zeros.
90 - Fixes in wake algorithm (and support for IV).
91 - IV is now used in arcfour (arcfour-iv is now longer used). Speedups in Arcfour.
92 - mcrypt_generic_deinit() function added.
93
94 January 1st 2001: (version 2.4.8)
95 - Corrected bug in rijndael-256 (reported by: Sami Farin <sfarin@ratol.fi>)
96 This makes the algorithm incompatible with previous versions.
97
98 October 20th 2000: (version 2.4.6)
99 - Compiles under win32 using cygwin (with -mno-cygwin)
100 - Added mcrypt_strerror()
101
102 September 18th 2000: (version 2.4.5)
103 - Updates in the documentation
104 - Libmcrypt can now be used without libltdl (in systems where libdl is present)
105 - Added the mcrypt_enc_set_state() function.
106 - Speedups in the blowfish algorithm
107
108 May 12th, 2000: (version 2.4.4)
109 - Added Panama algorithm
110
111 April 3rd, 2000: (version 2.4.2)
112 - Added missing symbols.
113
114 April 2nd, 2000: (version 2.4.1)
115 - Bugfixes
116 - Internal changes in mode modules
117 - Changes in the documentation
118
119 March 19th, 2000: (version 2.4.0)
120 - Corrected bugs in the extra algorithms.
121 - Libmcrypt is now thread safe without need for posix thread locks.
122 - Libmcrypt is no longer compatible with 2.2 or 2.3 version.
123 - Speedups in the library.
124 - The crypt algorithm has changed. In order for it's output to be compatible
125 with the unix crypt output, the key must be generated using crypt(3).
126 This was made in order to remove the key transformation, which was
127 included in the algorithm.
128 - The crypt algorithm was renamed to enigma.
129 - Changed many function's names in order to minimize namespace polution.
130 View the manpage for more information.
131
132 March 4th, 2000: (version 2.3.4)
133 - Improved POSIX Threads detection by Sascha Schumann
134 - Arcfour was renamed to arcfour-iv. The arcfour algorithm now does not
135 support iv (as the original algorithm does).
136 - Modes for block algorithms are not limited any more to a 256 bit block size.
137 - Mcrypt 2.2 compatibility functions were added.
138 - mcrypt_get_algo_key_size(), mcrypt_get_algo_block_size() functions
139 were added.
140
141 February 28th, 2000: (version 2.3.3)
142 - Some dlsyms were cached causing a 50% increase in speed.
143
144 February 27th, 2000:
145 - A slightly modified version of libmcrypt 2.2.4 was released in order
146 for mcrypt 2.5.0 to be able to compile against that series of libmcrypt.
147
148 February 22, 2000:
149 - mcrypt_is_block_algorithm_mode(), mcrypt_is_block_mode(),
150 mcrypt_is_block_algorithm(), functions were added.
151 - Bugfixes in the mcrypt_module_self_test().
152
153 February 8th, 2000:
154 - Keygen functionality was added to the cvs version of libmhash.
155 Libmcrypt seems to compile fine.
156
157 January 21st, 2000:
158 - Locks were added to libltdl calls so libmcrypt is still thread safe.
159
160 January 20th, 2000: (version 2.3.0)
161 - Tried to include libltdl. Not succesful yet. It compiles but it does
162 not work.
163 - keygen functionality was removed. It will be added to libmhash
164 http://schumann.cx/mhash
165
166 January 13th, 2000:
167 - Changed the sha-1 algorithm implementation
168 - mcrypt_get_iv_size now calls the specified mode, not the algorithm
169 - arcfour was added.
170
171 December 12th, 1999:
172 - Included patches by Steve Underwood, to allow an arbitary number of
173 streams of encryption.
174 - Thread locking was changed, in order to allow multiple encryption, and avoid
175 dead locks.
176
177 December 10th, 1999:
178 - Wake algorithm now supports IV.
179
180 December 4th, 1999:
181 - Changes in modules/modes in order to be thread-safe.
182
183 December 2nd, 1999:
184 - Bug fixes in the panama and xtea algorithms.
185 - The version of the module now can be checked at run-time (check mcrypt.h)
186
187 November 30th, 1999:
188 - Corrections in the panama algorithm, in order to work fine in big-endian
189 machines.
190
191 November 29th, 1999:
192 - encrypt() function crypt.c was renamed to __encrypt() in order to compile
193 in some systems.
194 - version number is included in the modules.
195 - mcrypt_list_algorithms(), mcrypt_list_modes() and mcrypt_list_keygen() now
196 check if the file is an mcrypt module (has the _mcrypt_xxx_version function).
197
198 November 28th, 1999:
199 - MARS was added (as a separate module)
200
201 November 26th, 1999:
202 - mcrypt_perror(int) function was added. It prints the text of an mcrypt
203 error code.
204 - Versioning has been changed. The release is no longer included in the library
205 name.
206 - Documentation was updated.
207
208 November 25th, 1999:
209 - crypt() and setkey() functions for enigma, were renamed to __crypt() and
210 __setkey() to keep some libcs happy.
211 - Corrected typo mistakes in twofish.c.
212 - Patched wake.c to work in bigendian machines.
213 - IDEA, RC4, RC6 which were non-free now are in a separate distribution.
214
215 November 24th, 1999:
216 - sdes key generation module was corrected. Now it works fine with
217 des(1).
218
219 November 20th, 1999:
220 - Mcrypt is now modular. Modes, algorithm, and key generation modules, can
221 be loaded dynamically.
222
223 November 17th, 1999:
224 - PANAMA stream algorithm was added (experimental).
225 - WAKE stream algorithm was added (experimental).
226
227 November 13th, 1999:
228 - Blowfish algorithm was changed, it is now compatible with other implementations.
229 - Accessing algorithms is now different. You do not specify TWOFISH_256, to
230 access TWOFISH algorithm with 256 bit key, but TWOFISH with keylength of
231 32 bytes (==256 bits). This is more flexible than the previous API since
232 you can access more keys.
233
234 October 16th, 1999:
235 - The new API is completed.
236 - STREAM mode was added.
237 - RC4 was added.
238
239 October 15th, 1999:
240 - libmcrypt is maintained using CVS.
241 - Major changes in the internal of the library. Much cleaner code.
242
243 October 14th, 1999:
244 - Serpent was added.
245
246 October 10th, 1999:
247 - Bugfix in sha1.
248
249 October 4th, 1999:
250 - Bugfixes in rc2 and rc6.
251 - rijndael implementation by Mike Scott was added.
252
253 September 29th, 1999:
254 - Minor bugfixes and optimization in the library. Now it uses less memory.
255
256 September 20th, 1999:
257 - Fixes in RC2, RC6 and SAFER+ code, so they work the same way in
258 big-endian and little-endian machines.
259 - Porting of SERPENT, MARS and RIJNDAEL is not ready, they do
260 not work right in bigendian machines.
261 - Bugfixes in the tests. Tests failed if one or two algorithms failed.
262
263 September 19th, 1999
264 - SERPENT was added in 128,192,256 key modes.
265
266 September 15th, 1999
267 - MARS and RIJNDAEL were added in 128,192,256 key modes.
268 - RC6 was splitted to RC6_128, RC6_192 and RC6_256 (the old RC6 is equal to RC6_256)
269 - RC2 was splitted to RC2_128, RC2_256 and RC2_1024 (the old RC2 is equal to RC2_1024)
270
271 September 14th, 1999
272 - Twofish code was changed. Now it uses Dr Brian Gladman's code.
273 - RC2 code was changed.
274
275 June 26th, 1999
276 - buffer overflow fixed in lib/mcrypt.c. Pointed out by Don Sutherland <dss@yadda.net>
277
278 June 23th, 1999
279 - RC2 code was cleared.
280 - RC6 was changed according to the specification. It is RC6 32/20/32.
281 RC6, SAFER+, LOKI97 and CAST-256 codes are actually Dr Brian Gladman's
282 code a bit modified for mcrypt.
283 - shared library version has changed (at last!)
284
285 June 22th, 1999
286 - SAFER+, LOKI97 and CAST-256 Added.
287
288 June 15th, 1999 - Version 2.2
289 - Changes in the xTEA algorithm. Some extra parenthesis made the algorithm
290 differ from the specification. Pointed out by Lars Nordentoft
291 <lntech@post9.tele.dk>. Read the README.xtea for more information.
292
293 June 12th, 1999 - Version 2.1.1
294 - Changes in the documentation which was inaccurate.
295
296 June 11th, 1999 - Version 2.1
297 - _mcrypt_ was placed as a prefix to all internal functions so they
298 do not pollute namespace.
299
300 May 29th, 1999
301 - test suites added
302 - Blowfish was divided to blowfish-448, -256, -192, -128.
303 - CBC can now accept IV
304 - mlock and munlock is used before mallocing and freeing any memory,
305 thus if such capabilities exist the library guarrantees that no
306 password is written in the disk (as swap etc.)
307 - gen_key_md5() was added and gen_key() was renamed to gen_key_sha1()
308 gen_key() is still defined to be gen_keysha1().
309
310 May 26th, 1999 - Version 2.0
311 - Documentation was incorrect and innacurate. Corrected.
312 - A #define WORDS_BIGENDIAN 0 was removed from acconfig.h, this
313 was confusing all the library headers, and thus the library was
314 useless.
315 - nbit-ofb mode added. n is the blocksize of the algorithm. Still
316 experimental.
317
318 May 24th, 1999 - Version 1.93
319 - defined get_block_size to be mcrypt_get_block_size so php3.0.8 compiles ok
320
321 May 17th, 1999 - Version 1.9
322 - gen_key() changed
323 - libtool support (based on Sascha Schumann's patches)

webmaster@linux.gr
ViewVC Help
Powered by ViewVC 1.1.26