/[mcrypt]/mcrypt/NEWS
ViewVC logotype

Annotation of /mcrypt/NEWS

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.26 - (hide annotations)
Fri Jun 7 15:13:25 2002 UTC (21 years, 9 months ago) by nmav
Branch: MAIN
Changes since 1.25: +2 -0 lines
*** empty log message ***

1 nmav 1.24 ?????????:
2     - Better error checking
3 nmav 1.25 - Added rndunix random gatherer from gnupg. It is
4     a gatherer for random bytes, written by Peter Gutmann.
5 nmav 1.26 - Added some kind of random byte generator for Win32
6     systems.
7 nmav 1.24
8 nmav 1.22 29May2002: Version 2.6.0
9 nmav 1.23 - Added OpenPGP support (added by Timo Schulz <ts@winpt.org>)
10 nmav 1.19 - Removed all of file locking code.
11 nmav 1.20 - Several improvements and corrections on the old
12     codebase (still a mess).
13 nmav 1.19
14 nmav 1.18 11Mar2002: Version 2.5.13
15     - Corrected stream modes in block algorithms
16    
17 nmav 1.17 29Jan2002: Version 2.5.12
18     - Added some missing files
19    
20 nmav 1.16 26Jan2002: Version 2.5.11
21 nmav 1.15 - SHA1 is the default digest used
22    
23 nmav 1.14 01Dec2001:
24     - Added --time option
25    
26 nmav 1.13 24Sep2001: Version 2.5.10
27     - Corrected Makefile
28     - Corrected bug in key checking
29    
30     15Sep2001: Version 2.5.9
31 nmav 1.11 - Corrected bug which made mcrypt block while writing the header
32     (patch by Jerome Bertorelle <jerome.bertorelle@noos.fr>)
33 nmav 1.12 - Several cleanups
34 nmav 1.11
35 nmav 1.7 08Sep2001: Version 2.5.8
36 nmav 1.5 - Added option for staticaly linking mcrypt
37 nmav 1.8 - '--gzip' and '--bzip2' options now work even when handling streams
38     (based on patch by Stefan Hetzl <shetzl@teleweb.at>)
39 nmav 1.9 - Removed libmcrypt-nm and libmcrypt 2.2 support
40     - Updated magic file (for file(1) program)
41 nmav 1.10 - Updated included gettext
42 nmav 1.6
43 nmav 1.4 04Jun2001: Version 2.5.7 released
44     - Fixes for the new libmcrypt
45    
46 nmav 1.3 27Apr2001: Version 2.5.6 released
47     - Updated locales
48    
49 nmav 1.2 02Oct2000: Version 2.5.5 released.
50     - Support for libmcrypt linked against libdl
51     - Some more verbose error messages
52    
53 nmav 1.1 19May2000: Version 2.5.4 released.
54     - Support for the libmcrypt-nm.
55     - bugfixes in argument handling
56    
57     02Apr2000: Version 2.5.3 released.
58     - mcrypt does not depend now in the new libmhash. It can work
59     with the older version as well.
60    
61     21Mar2000: Version 2.5.2 released.
62     - Adapted to the libmcrypt 2.4 API
63     - The unix crypt mode parameters were changed.
64     In order to use it, you should use the parameters:
65     "-a crypt --bare" AND "--keymode scrypt" (instead of "--keymode asis").
66     - The '-' file name is now used to refer to stdin.
67    
68     08Mar2000: Version 2.5.1 released.
69     - Mcrypt now checks the keysizes before asking for a passphrase.
70     - Corrected bugs in command line arguments proccessing.
71    
72     06Mar2000: Version 2.5.0 released.
73     - The way crc32 is stored into the encrypted file has changed.
74     - Now mcrypt supports hash algorithms.
75     - Updated manpage.
76     - The option --nodelete was added. If specified it will not delete
77     the output file, even if crc32 check fails.
78     - Mcrypt can now compile using the 2.2.5 version of libmcrypt.
79     That way it looses some of it's functionality.
80     - Mcrypt distribution no longer includes libmcrypt.
81     - New (extendable) File format. Moved to version 2.5.0 since not all planned
82     improvements were added (to justify the 3.0.0 version).
83    
84     19Jan2000: Corrected a minor bug in src/extra.c, where bzero used
85     sizeof() for malloc'ed data.
86    
87     10Dec1999: Corrected a bug in src/mcrypt.c, encrypt_general() function.
88     It did not use the random number generator properly for
89     stream ciphers.
90    
91     03Dec1999: Corrected a serious bug in src/extra.c, read_iv function.
92     It didn't work when not using streams.
93     Corrected a bug in mcrypt.c, function encrypt_general(), which
94     made the program to crash when a smaller than the maximum
95     keysize was specified at the command line.
96     Documentation was updated.
97     Bugfix in bare decryption for block algorithms. When a file was
98     smaller than a fixed number it was not decrypted as it should.
99    
100     02Dec1999: Mcrypt can now compile in systems were libintl.h was not found
101     without disabling nls, patch by Sascha Schumann.
102     28Nov1999:
103     --keygen_directory parameter was replaced by --keymode_directory.
104    
105     26Nov1999:
106     --algorithms_directory, --modes_directory, --keygen_directory options added.
107     the user can now specify where the libmcrypt modules are.
108    
109     25Nov1999: Some speedups in the bare mode. It is much faster than the bare
110     mode of previous mcrypt versions. Normal mode is still too
111     slow at decryption time, but it will be fixed soon.
112    
113     23Nov1999: Mcrypt now uses the libmcrypt 2.3, and so many things have
114     changed internally.
115     most algorithms have changed their name according to libmcrypt name
116     most key modes have their name according to libmcrypt name
117     the file format has changed (check FORMAT)
118     Solaris DES compatibility has changed. In order to
119     be compatibe with des(1) mcrypt needs the following
120     parameters "-a des --keymode sdes --bare --noiv"
121     Unix crypt compatibility has changed. In order to
122     be compatibe with crypt(1) mcrypt needs the following
123     parameters "-a crypt --keymode asis --bare"
124     info pages were removed. I couldn't maintain them anyway.
125    
126     10Nov1999: Corrected bug, where compilation failed if GZIP or BZIP2 were not
127     defined. Now mcrypt checks if these files exist before
128     executing them.
129     Mcrypt was ported to win32 (comes as a different distribution).
130    
131     04Nov1999: Corrected some defines in the libufc included, so it works fine
132     in 64bit machines. Pointed out by Robin Humble <rjh@pixel.maths.monash.edu.au>
133     and Larry Snyder <larrys@lexis-nexis.com>
134    
135     03Nov1999: Replaced "grep -q" with "grep >/dev/null" in tests/ciphertest.nonfree
136    
137     16Oct1999: version 2.2.5 was released.
138     Mcrypt is updated to conform to the new libmcrypt API.
139     Greek translation is updated.
140     RC4 was added.
141    
142     15Oct1999: Bugfix in fwrite in bare mode.
143     Pointed out by Koblinger Egmont <egmont@fazekas.hu>
144     mcrypt is now under CVS control.
145    
146     14Oct1999: Serpent was added.
147     Changes in the man page.
148    
149     11Oct1999: Bugfix in fork() in mcrypt.c.
150     Pointed out by Derelittus Maloratus <tnt@acdc.zzn.com>.
151    
152     10Oct1999: Bugfix in sha1.
153     Option --flush was added.
154    
155     04Oct1999: Bugfixes in RC2, RC6.
156     RIJNDAEL was added.
157    
158     20Sept1999: Fixes in RC2, RC6 and SAFER+ code, so they work the same way in
159     big-endian and little-endian machines.
160     The porting of SERPENT, MARS and RIJNDAEL is not finished, they
161     do not work right in bigendian machines.
162    
163     19Sept1999: Changes in the library:
164     SERPENT was added in 128,192 and 256 key modes.
165    
166     15Sept1999: Changes in the library:
167     MARS (non-free) and RIJNDAEL were added in 128,192 and 256 key modes.
168     RC6 was splitted to RC6-128, RC6-192 and RC6-256 (the old RC6 is equal to RC6-256)
169     RC2 was splitted to RC2-128, RC2-256 and RC2-1024 (the old RC2 is equal to RC2-1024)
170    
171     8Sept1999: noecho option was changed to echo. Not echoing asterisks is the
172     default now, since asterisks do work right in all systems.
173    
174     7Sept1999: Changes in src/getpass.c. There was a bug, when the --noecho,
175     option was used. Pointed out by Ed Baxter <Ed.Baxter@pii.com>.
176     Fixed.
177    
178     21Aug1999: Added --enable-static-link configure option. This option links
179     statically mcrypt, usefull where there is no need for a
180     separate library.
181    
182     28Jun1999: Changed zip support (bzip2,gzip) during decryption.
183     Polish translation for mcrypt was updated.
184    
185     26Jun1999: Fixed Makefile.am.
186    
187     23Jun1999: version 2.2.2 released
188     SAFER+, LOKI97 and CAST-256 added. RC6 was changed. Check
189     libmcrypt/ChangeLog.
190    
191     18Jun1999: mdecrypt link is now properly created.
192    
193     16Jun1999: Libmcrypt: xTEA algorithm changed (check libmcrypt/ChangeLog).
194    
195     12Jun1999: Changes in the documentation.
196     Polish language support by Janusz A. Urbanowicz <alex@bofh.net.pl>.
197    
198     11Jun1999: Capability support for mlock(), experimental (it does not work).
199     Mcrypt now uses automake.
200    
201     09Jun1999: src/hex.c: A bug was found in the way it handles null characters.
202     Fixed.
203     src/mcrypt.c: A bug was found when using hex and hash/4bit modes.
204     Fixed.
205    
206     02Jun1999: version 2.2.0 released
207     src/keys.c: bufix for a variable that was malloced but not freed.
208     src/getpass.c: getpass() does not return any more a static char*,
209     changed to a char* which is malloced.
210    
211     01Jun1999: src/extra.c: Bugfix when entering key in a hash mode.
212     src/keys.c: Bugfixes.
213    
214     29May1999: libmcrypt 2.1 was added.
215     - so blowfish is renamed to blowfish-448 and blowfish-128,-192,
216     -256 were added.
217     - added md5hash keymode, default is still sha1hash (or just hash).
218     - nOFB mode was added. n is the algorithm's block size
219     - src/mcrypt.c, src/getpass.c: --noecho option added.
220    
221     25May1999: Twofish-192 is now the default algorithm.
222     CRC32 was moved to the end of the file. Now mcrypt can work
223     fine without temporary files. So this version is incompatible
224     with all the previous ones.
225     Some non-critical bugfixes in cfb and ofb modes.
226    
227     24May1999: src/mcrypt.c: waitpid after popen was removed.
228    
229     23May1999: src/mcrypt.c, src/extra.c: --doublecheck option added. With this
230     option passwords are checked twice even if decrypting.
231     src/mcrypt.c, src/lock.c: --nolock option added. With this
232     option no locks are used. This is usefull if you encrypt
233     in a nfs exported directory.
234     src/bits.c: Changed code to be faster and simpler.
235    
236     19May1999: src/keys.c, src/extra.c: Now the key handling moved in
237     keys.c completely. get_password() now only returns the
238     plain password.
239    
240     18May1999: Library: This is not the same with libmcrypt any more.
241     This library may have less options than libmcrypt.
242     po/: Czech language support by Robert Hanzlik (robi@junyks.cz)
243    
244     17May1999: src/mcrypt.c: Now full and half mode were again replaced by
245     8bit and 4bit modes. Bugfix for these modes. Now they seem
246     to work fine.
247     src/keys.c: gen_key() changed so that strlen() is no longer
248     needed. This allows mcrypt to work fine on an IRIX 6.4
249    
250     16May1999: src/keys.c: gen_key.c salt use has changed.
251    
252     9May1999: src/mcrypt.c: Many, many changes.
253     Used indent to clear up some code.
254     Twofish-128 is now the default algorithm.
255     7bit mode was removed.
256     8bit and 4bit modes renamed to full and half.
257     hash key mode added and is the default. It uses sha-1 to
258     convert a passphrase to a key.
259     thanks to Alexander Demenshin <aldem@techie.com>
260     encrypted file's format changed. A salt is added for the hash
261     key mode. 20 bytes are reserved for future use.
262     -i and --bit were replaced by -o and --keymode.
263     --bare mode works as before and supports hash but no salt.
264     so mcrypt 2.2 is not compatible with the 2.1 version.
265    
266    
267     7May1999: version 2.1.19 released.
268     Non-free version is enabled by default. The name still remains
269     non-free despite tha fact that in most countries it is free:)
270     src/mcrypt.c: 4bit mode is now the default.
271    
272     6May1999: src/sunlink.c: Renamed to unlink.c and removed the safe_unlink
273     capability. Since some programs are dedicated in doing
274     that job there is no need for maintaining that. Simple
275     unlink still overwrites the file with nulls.
276     src/bits.c:
277     src/mcrypt.c: 4 bit mode added. In that mode only 4 bits
278     of every character are read. Thus more characters are
279     needed but it is much more safer.
280     src/defines.h: changed nls defines etc. to compile happily
281     again in my glibc 2.1.
282    
283     29Apr1999: version 2.1.18 released
284     library: RC6 and IDEA now work on both little and big endian
285     machines.
286     doc/magic: Magic file for file(1) added thanks to
287     Koblinger Egmont <egmont@fazekas.hu>
288     src/mcrypt.c: Now --bare flag encrypts directly to the output
289     file (or stdout) without using temp files.
290     library: Changed lib/mcrypt.c so null passwords are accepted
291     for rc2.
292     Now nonfree version is included in the free but must
293     be enabled in compile time using configure --enable-non-free
294    
295     26Apr1999: src/mcrypt.c: Compability mode with des(3) added.
296     library and mcrypt.c: Many internal changes.
297    
298     25Apr1999: library: Twofish-192 and Twofish-256 added. Twofish (128) was
299     renamed to Twofish-128. This is the code applied for aes
300     by counterpane systems.
301    
302     25Apr1999: library: The library now clears (bzero's) all keywords used
303     within the library.
304    
305     24Apr1999: version 2.1.17 released
306     mcrypt.texi and mcrypt.info were added. I do not know much
307     about their syntax so they may not be right.
308     Now mcrypt is splitted in two packages. mcrypt-x.y.z-nonfree
309     and mcrypt-x.y.z. The nonfree version contains the patented
310     algorithms.
311    
312     23Apr1999: src/mcrypt.c: Algorithm and mode specified in the command line are
313     now checked in a loop by calling get_algorithms_name. This may
314     lead to a problem since 3way is no longer acceptable(3-way is
315     the correct) but since the code is much more clear it is
316     acceptable.
317     library: IDEA and RC6 algorithms added. These algorithms are
318     patented so you need a license to use them. More information
319     can be found at the file doc/README.nonfree.
320    
321     20Apr1999: version 2.1.16 released
322     src/mcrypt.c: Fixed a bug(?) in the popen call (when calling for
323     gzip or bzip2). Actually it did not return NULL if the
324     program couldn't be executed. Corrected thanks to
325     Vasilis Vasaitis (vvas@hal.csd.auth.gr)
326    
327     19Apr1999: Removed a bug in the library. If all threads were used, memory
328     leaks were created.
329     RC2 algorithm added.
330    
331     18Apr1999: version 2.1.15 released
332     src/mcrypt.c --gzip and --bzip2 options added. If specified mcrypt
333     calls gzip or bzip2 and compresses the input before encryption.
334     src/extra.c: Unix Crypt is now reported as algorithm when using
335     verbose mode.
336    
337     17Apr1999: libmcrypt: 8bit OFB mode added.
338    
339     27Mar1999: -O2 removed for lib/twofish.c. It compiles faster now but
340     the speed of encryption for that algorithm is slightly
341     reduced.
342    
343     26Mar1999: Now gaa 1.5.1 is used, so arguments in the command
344     line take precendence over the .mcryptrc file.
345    
346     23Mar1999: Some minor changes in the Makefiles to be closer to the GNU
347     coding standards.
348    
349     16Mar1999: src/bits.h: Changed so it can compile happily on HP-UX 10.24.
350     pointed out by R Sriram <rsriram@krdl.org.sg>
351    
352     13Mar1999: src/mcrypt.c: ".dec" files are properly deleted if a signal
353     is received.
354    
355     11Mar1999: version 2.1.14 released
356    
357     10Mar1999: src/getpass.c: Added from the shadow suite (981228). Now mcrypt
358     prints asterisks when the password is typed. Original code
359     by Julianne Frances Haugh, modified by Pavel Machek <pavel@ucw.cz>
360     Only minor additions to fit in mcrypt (and use a more random
361     way of printing asterisks).
362     src/mcrypt.c: Minor bugfixes.
363    
364     09Mar1999: src/mcrypt.c: Minor bugfixes. Output files are not removed if
365     they cannot be opened.
366    
367     03Mar1999: src/extra.c, src/mcrypt.c: Now mcrypt asks whether to overwrite
368     a file or skip it.
369    
370     02Mar1999: version 2.1.13 released
371    
372     26Feb1999: src/enigma.c, lib/des.c: Changed all long integers to word32
373     and sword32 so it works on all platforms (64bit and 32bit).
374     Pointed out by Dan Stromberg <strombrg@nis.acs.uci.edu>
375     *.c: malloc is now checked for its return value. If it is
376     NULL mcrypt retries to allocate memory after one second
377     and if it fails again, mcrypt exits.
378    
379     23Feb1999: src/mcrypt.c, src/environ.c: Added environment support. Now
380     the user may use MCRYPT_ALGO, MCRYPT_MODE, MCRYPT_BIT_MODE
381     and MCRYPT_KEY to specify the algorithm, the mode and the key.
382     Suggested by Koblinger Egmont <egmont@fazekas.hu>
383    
384     18Feb1999: Makefile.in: Links are now relative and not absolute.
385     mcrypt.1: Some corrections in the documentation.
386     src: mcrypt.c: A warning is issued when the keyword(s) are
387     specified in the command line.
388     Pointed out by Koblinger Egmont <egmont@fazekas.hu>
389    
390     17Feb1999: version 2.1.12 released
391     lib/twofish.c: Added from GNUPG. Now twofish supports only
392     128bit encryption but it works. Minor changes.
393     lib/twofish: Removed. That AES API was a real problem.
394     src/mcrypt.c: --8bit and --7bit replaced with --bit 7 or 8.
395    
396     16Feb1999: src/mcrypt.c, src/mcrypt.gaa: Mcrypt now uses the gnu
397     argument analyzer instead of getopt. Now we can use a
398     configuration file instead of reading from command line.
399    
400     15Feb1999: src/sunlink.c, src/mcrypt.c: Unlink and safe unlink changed.
401     Now simple unlink overwrites the file with nulls and safe
402     unlink with random strings seven times.
403    
404     14Feb1999: src/mcrypt.c: Default bit mode for the key changed to 8bit.
405     configure.in: Added system checking.
406     src/mcrypt.c: A warning is issued if not using a real random
407     device like /dev/random.
408     src/random.c: Added an #ifdef so it compiles hapilly in
409     all systems.
410    
411     13Feb1999: version 2.1.10 released
412     src/mcrypt.c, src/hex.c: Added hex mode. Now the keyword can
413     be specified in hex using the --hex parameter. Thus there is no
414     limit to the range of input characters.
415     src/defines.h, src/random.c: Added /dev/(s,u)random support for
416     linux and openbsd, using some configure scripts from GNUPG.
417     src/mcrypt.c, src/extra.c: fixed a bug in unix crypt
418     src/extra.c: fixed a bug in the keyfile handling
419    
420     11Feb1999: The --file parameter changed to --keyfile
421    
422     09Feb1999: src/mcrypt.c: --file parameter added. Now keywords can be specified
423     using a file. One keyword is read per line.
424     lib/lcrypt.c: Better use of mutex locks.
425     src/sunlink.c: Removed the srand(time(0)). Now it is only called
426     only in main() in src/mcrypt.c.
427     mcrypt.1: Added twofish and some information about tea.
428     lib/twofish: The algorithm works as it should. (passed the ciphertext
429     tests found in counterpane system's site)
430    
431     08Feb1999: version 2.1.9 released
432     src/bits.c: Serious Bugfixes. In 7bit mode all keywords were reduced
433     to 56bit. Fixed.
434     * So version 2.1.9 is incompatible with all previous versions
435     when the key is entered in 7bit mode.
436     lib/twofish: The twofish algorithm is implemented in the library
437     using the AES API. Experimental.
438     lib/lcrypt.c: If posix_threads found use mutex locks to
439     make the init_mcrypt functions reentrant.
440     src/crypt.c/h: changed to enigma.c/h
441     src/mcrypt.c: srand(time(0)) is called once in the main()
442     function. Thus being more random(?)...
443    
444     03Feb1999: version 2.1.7 released
445     src/locks.c: src/mcrypt.c: No longer exits when lock timeout is
446     reached, returns -1 and the file is skipped.
447     lib/tean.c: Code changed to be compatible with both little
448     and big-endian.
449     Uncompabilty reported by Igor Schein <igor@txc.com>
450     TEA is no longer compatible with previous versions of mcrypt.
451     lib/swap.c: Included strings.h (via libdefs.h) for bzero. Needed
452     in systems that do not support memset.
453     Reported by Xenitellis Simos <S.Xenitellis@rhbnc.ac.uk>
454    
455     01Feb1999: version 2.1.6 released
456     mcrypt.1: The man page is (at last) corrected and updated.
457     Cleared code in lib/lcrypt.c and lib/lcrypt.h. Removed some
458     memory leaks. Code cleared in src/mcrypt.c, some memory leaks
459     also removed.
460     The key padding with nulls (if it was too small) moved in
461     lib/lcrypt.c. CAST-128 is no longer compatible with previous
462     versions when the key is more than 10 bytes.
463    
464     31Jan1999: lib/lcrypt.c: CBC and ECB encryption added into the library.
465     CFB mode also added.
466    
467     30Jan1999: libufc/ufc-crypt.h: Code changed to be supported from
468     the main config.h file.
469    
470     29Jan1999: version 2.1.5 released
471     src/lcrypt.c: An error was found in the key handling. Corrected.
472     src/tean.c: The Tiny Encryption Algorithm was added.
473     NLS: code updated to gettext-0.10.35
474     lib/: The library code is now placed there.
475    
476     version 2.1.4 released
477     src/cast.c: Added CAST-128. Adopted from the lsh project.
478     Originally written by Steve Reid <sreid@sea-to-sky.net>
479     src/lcrypt.c: The library is now more functional. It supports
480     multithreading (I think so:) .
481    
482     21Jan1999: src/mcrypt.c: -e flag was removed (it was optional anyway)
483     -t --type parameter was replaced by -a --algorithm parameter.
484     src/locks.c: Added. Now locking is performed to input (read) and
485     output (write) files via fcntl.
486    
487     20Jan1999: version 2.1.3 released
488     src/mcrypt.c: Many bugfixes. When specifying many files and one key
489     via --key the key length was reduced for every file. Fixed.
490     src/mcrypt.c: signal handling.
491     functions.c: Added this file to make bzero() and signal() work in
492     POSIX systems that use memset() and sigaction().
493     src/mcrypt.c: Output files are now deleted if encryption/decryption
494     fails. (The same if we get a signal)
495     src/defines.h: Checks were added to find 32bit, 16bit and 8bit
496     integers. (using defines in configure.in)
497    
498     17Jan1999: src/mcrypt.c: The number of bytes of plaintext of the last block is now
499     represented in one byte (previously 4). So that version is not
500     compatible with previous ones. Minor changes to use fread and
501     fwrite instead of read and write (much faster).
502     src/mcrypt.c: The crc32 is now stored encrypted in the file.
503     src/blowfish.c: The algorithm changed according to the "new" blowfish.
504    
505     16Jan1999: src/crc32.c: Added. CRC32 check added.
506    
507     15Jan1999: version 2.1.1 released
508     Makefile in ufc-crypt is now added into the main configure script.
509     Algorithm information are now stored into encrypted files, so
510     that version is also incompatible with previous ones if the
511     --bare flag is not specified.
512     NLS support is added (via gettext-0.10). Greek language support.
513    
514     13Jan1999: Major version update 2.1.0
515     Added libmcrypt.a (lcrypt.c)
516     DES, 3DES, Blowfish, 3-WAY and GOST are implemented there.
517     Code cleared in mcrypt.c
518     Proper header files were created (at last!)
519     Because of these changes GOST, 3-WAY and DES (and tripleDES) are
520     not compatible with previous versions of this program.
521    
522     12Jan1999: Added unix crypt compability (libufc is included to implement
523     the crypt() needed in unix crypt algorithm).
524     DES 7bit mode is now working.
525     Minor changes in sunlink.c (prints a warning when more than one
526     hard links for a file exist)
527    
528     18Dec1998: Added src/sunlink.c and references to src/mcrypt.c. Now the -u
529     flag can be used to delete (secure delete) the input file.
530    
531     17Dec1998: Added mcrypt.1. At last a manpage!

webmaster@linux.gr
ViewVC Help
Powered by ViewVC 1.1.26