1Crypt::Shark
2============
3
4Shark is 64-bit block cipher that accepts a 128-bit key. It was
5designed by Vincent Rijmen, Joan Daemen, Bart Preneel, Antoon
6Bosselaers, and Erik De Win.
7
8BONUS
9
10The C file, _shark.c, is a standalone Shark implementation. To
11compile it, type:
12
13        gcc -Wall _shark.c
14
15A new binary, a.out, will be created.
16
17To run the binary, type:
18
19        ./a.out
20
21COPYRIGHT AND LICENSE
22
23Copyright (C) 2003 Julius C. Duque. Please read contact.html for
24details on how to contact the author.
25
26This library is free software; you can redistribute it and/or modify
27it under the same terms as the GNU General Public License.
28
29