Crypt::Camellia =============== Camellia is a variable-length key, 128-bit block cipher. It is the NESSIE winner for 128-bit block ciphers. The default key length in this implementation is 128 bits. BONUS The C file, _camellia.c, is a standalone Camellia implementation. To compile it, type: gcc -Wall _camellia.c A new binary, a.out, will be created. To run the binary, type: ./a.out COPYRIGHT AND LICENSE Copyright (C) 2003 Julius C. Duque This library is free software; you can redistribute it and/or modify it under the same terms as the GNU General Public License.