/[mcrypt]/libmcrypt/NEWS
ViewVC logotype

Contents of /libmcrypt/NEWS

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.38 - (show annotations)
Sat Mar 9 21:48:51 2002 UTC (22 years, 1 month ago) by nmav
Branch: MAIN
Changes since 1.37: +5 -0 lines
Added mcrypt_enc_get_state()

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

webmaster@linux.gr
ViewVC Help
Powered by ViewVC 1.1.26