/[mcrypt]/libmcrypt/NEWS
ViewVC logotype

Annotation of /libmcrypt/NEWS

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2 - (hide annotations)
Mon Sep 4 13:02:16 2000 UTC (23 years, 6 months ago) by nmav
Branch: MAIN
Changes since 1.1: +3 -0 lines
*** empty log message ***

1 nmav 1.2 August 4th, 2000:
2     - Speedups in the blowfish algorithm
3    
4 nmav 1.1 May 12th, 2000: (version 2.4.4)
5     - Added Panama algorithm
6    
7     April 3rd, 2000: (version 2.4.2)
8     - Added missing symbols.
9    
10     April 2nd, 2000: (version 2.4.1)
11     - Bugfixes
12     - Internal changes in mode modules
13     - Changes in the documentation
14    
15     March 19th, 2000: (version 2.4.0)
16     - Corrected bugs in the extra algorithms.
17     - Libmcrypt is now thread safe without need for posix thread locks.
18     - Libmcrypt is no longer compatible with 2.2 or 2.3 version.
19     - Speedups in the library.
20     - The crypt algorithm has changed. In order for it's output to be compatible
21     with the unix crypt output, the key must be generated using crypt(3).
22     This was made in order to remove the key transformation, which was
23     included in the algorithm.
24     - The crypt algorithm was renamed to enigma.
25     - Changed many function's names in order to minimize namespace polution.
26     View the manpage for more information.
27    
28     March 4th, 2000: (version 2.3.4)
29     - Improved POSIX Threads detection by Sascha Schumann
30     - Arcfour was renamed to arcfour-iv. The arcfour algorithm now does not
31     support iv (as the original algorithm does).
32     - Modes for block algorithms are not limited any more to a 256 bit block size.
33     - Mcrypt 2.2 compatibility functions were added.
34     - mcrypt_get_algo_key_size(), mcrypt_get_algo_block_size() functions
35     were added.
36    
37     February 28th, 2000: (version 2.3.3)
38     - Some dlsyms were cached causing a 50% increase in speed.
39    
40     February 27th, 2000:
41     - A slightly modified version of libmcrypt 2.2.4 was released in order
42     for mcrypt 2.5.0 to be able to compile against that series of libmcrypt.
43    
44     February 22, 2000:
45     - mcrypt_is_block_algorithm_mode(), mcrypt_is_block_mode(),
46     mcrypt_is_block_algorithm(), functions were added.
47     - Bugfixes in the mcrypt_module_self_test().
48    
49     February 8th, 2000:
50     - Keygen functionality was added to the cvs version of libmhash.
51     Libmcrypt seems to compile fine.
52    
53     January 21st, 2000:
54     - Locks were added to libltdl calls so libmcrypt is still thread safe.
55    
56     January 20th, 2000: (version 2.3.0)
57     - Tried to include libltdl. Not succesful yet. It compiles but it does
58     not work.
59     - keygen functionality was removed. It will be added to libmhash
60     http://schumann.cx/mhash
61    
62     January 13th, 2000:
63     - Changed the sha-1 algorithm implementation
64     - mcrypt_get_iv_size now calls the specified mode, not the algorithm
65     - arcfour was added.
66    
67     December 12th, 1999:
68     - Included patches by Steve Underwood, to allow an arbitary number of
69     streams of encryption.
70     - Thread locking was changed, in order to allow multiple encryption, and avoid
71     dead locks.
72    
73     December 10th, 1999:
74     - Wake algorithm now supports IV.
75    
76     December 4th, 1999:
77     - Changes in modules/modes in order to be thread-safe.
78    
79     December 2nd, 1999:
80     - Bug fixes in the panama and xtea algorithms.
81     - The version of the module now can be checked at run-time (check mcrypt.h)
82    
83     November 30th, 1999:
84     - Corrections in the panama algorithm, in order to work fine in big-endian
85     machines.
86    
87     November 29th, 1999:
88     - encrypt() function crypt.c was renamed to __encrypt() in order to compile
89     in some systems.
90     - version number is included in the modules.
91     - mcrypt_list_algorithms(), mcrypt_list_modes() and mcrypt_list_keygen() now
92     check if the file is an mcrypt module (has the _mcrypt_xxx_version function).
93    
94     November 28th, 1999:
95     - MARS was added (as a separate module)
96    
97     November 26th, 1999:
98     - mcrypt_perror(int) function was added. It prints the text of an mcrypt
99     error code.
100     - Versioning has been changed. The release is no longer included in the library
101     name.
102     - Documentation was updated.
103    
104     November 25th, 1999:
105     - crypt() and setkey() functions for enigma, were renamed to __crypt() and
106     __setkey() to keep some libcs happy.
107     - Corrected typo mistakes in twofish.c.
108     - Patched wake.c to work in bigendian machines.
109     - IDEA, RC4, RC6 which were non-free now are in a separate distribution.
110    
111     November 24th, 1999:
112     - sdes key generation module was corrected. Now it works fine with
113     des(1).
114    
115     November 20th, 1999:
116     - Mcrypt is now modular. Modes, algorithm, and key generation modules, can
117     be loaded dynamically.
118    
119     November 17th, 1999:
120     - PANAMA stream algorithm was added (experimental).
121     - WAKE stream algorithm was added (experimental).
122    
123     November 13th, 1999:
124     - Blowfish algorithm was changed, it is now compatible with other implementations.
125     - Accessing algorithms is now different. You do not specify TWOFISH_256, to
126     access TWOFISH algorithm with 256 bit key, but TWOFISH with keylength of
127     32 bytes (==256 bits). This is more flexible than the previous API since
128     you can access more keys.
129    
130     October 16th, 1999:
131     - The new API is completed.
132     - STREAM mode was added.
133     - RC4 was added.
134    
135     October 15th, 1999:
136     - libmcrypt is maintained using CVS.
137     - Major changes in the internal of the library. Much cleaner code.
138    
139     October 14th, 1999:
140     - Serpent was added.
141    
142     October 10th, 1999:
143     - Bugfix in sha1.
144    
145     October 4th, 1999:
146     - Bugfixes in rc2 and rc6.
147     - rijndael implementation by Mike Scott was added.
148    
149     September 29th, 1999:
150     - Minor bugfixes and optimization in the library. Now it uses less memory.
151    
152     September 20th, 1999:
153     - Fixes in RC2, RC6 and SAFER+ code, so they work the same way in
154     big-endian and little-endian machines.
155     - Porting of SERPENT, MARS and RIJNDAEL is not ready, they do
156     not work right in bigendian machines.
157     - Bugfixes in the tests. Tests failed if one or two algorithms failed.
158    
159     September 19th, 1999
160     - SERPENT was added in 128,192,256 key modes.
161    
162     September 15th, 1999
163     - MARS and RIJNDAEL were added in 128,192,256 key modes.
164     - RC6 was splitted to RC6_128, RC6_192 and RC6_256 (the old RC6 is equal to RC6_256)
165     - RC2 was splitted to RC2_128, RC2_256 and RC2_1024 (the old RC2 is equal to RC2_1024)
166    
167     September 14th, 1999
168     - Twofish code was changed. Now it uses Dr Brian Gladman's code.
169     - RC2 code was changed.
170    
171     June 26th, 1999
172     - buffer overflow fixed in lib/mcrypt.c. Pointed out by Don Sutherland <dss@yadda.net>
173    
174     June 23th, 1999
175     - RC2 code was cleared.
176     - RC6 was changed according to the specification. It is RC6 32/20/32.
177     RC6, SAFER+, LOKI97 and CAST-256 codes are actually Dr Brian Gladman's
178     code a bit modified for mcrypt.
179     - shared library version has changed (at last!)
180    
181     June 22th, 1999
182     - SAFER+, LOKI97 and CAST-256 Added.
183    
184     June 15th, 1999 - Version 2.2
185     - Changes in the xTEA algorithm. Some extra parenthesis made the algorithm
186     differ from the specification. Pointed out by Lars Nordentoft
187     <lntech@post9.tele.dk>. Read the README.xtea for more information.
188    
189     June 12th, 1999 - Version 2.1.1
190     - Changes in the documentation which was inaccurate.
191    
192     June 11th, 1999 - Version 2.1
193     - _mcrypt_ was placed as a prefix to all internal functions so they
194     do not pollute namespace.
195    
196     May 29th, 1999
197     - test suites added
198     - Blowfish was divided to blowfish-448, -256, -192, -128.
199     - CBC can now accept IV
200     - mlock and munlock is used before mallocing and freeing any memory,
201     thus if such capabilities exist the library guarrantees that no
202     password is written in the disk (as swap etc.)
203     - gen_key_md5() was added and gen_key() was renamed to gen_key_sha1()
204     gen_key() is still defined to be gen_keysha1().
205    
206     May 26th, 1999 - Version 2.0
207     - Documentation was incorrect and innacurate. Corrected.
208     - A #define WORDS_BIGENDIAN 0 was removed from acconfig.h, this
209     was confusing all the library headers, and thus the library was
210     useless.
211     - nbit-ofb mode added. n is the blocksize of the algorithm. Still
212     experimental.
213    
214     May 24th, 1999 - Version 1.93
215     - defined get_block_size to be mcrypt_get_block_size so php3.0.8 compiles ok
216    
217     May 17th, 1999 - Version 1.9
218     - gen_key() changed
219     - libtool support (based on Sascha Schumann's patches)

webmaster@linux.gr
ViewVC Help
Powered by ViewVC 1.1.26