1Crypt::Anubis
2=============
3
4Anubis is a variable-length key, 128-bit block cipher designed by
5Vincent Rijmen and Paulo S. L. M. Barreto. Anubis was submitted as
6a NESSIE candidate.
7
8The default key length in this implementation is 128 bits.
9
10BONUS
11
12The C file, _anubis.c, is a standalone Anubis implementation. To
13compile it, type:
14
15        gcc -Wall _anubis.c
16
17A new binary, a.out, will be created.
18
19To run the binary, type:
20
21        ./a.out
22
23COPYRIGHT AND LICENSE
24
25Copyright (C) 2003 Julius C. Duque <jcduque (AT) lycos (DOT) com>
26
27This library is free software; you can redistribute it and/or modify
28it under the same terms as the GNU General Public License.
29
30