• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H19-Jun-2003-199144

t/H19-Jun-2003-10,5159,123

Anubis.pmH A D19-Jun-20033.3 KiB14311

Anubis.xsH A D05-Jun-20031.8 KiB9378

ChangesH A D19-Jun-2003226 159

INSTALLH A D04-Jun-2003119 106

LICENSEH A D04-Jun-200317.6 KiB341281

MANIFESTH A D04-Jun-20031.6 KiB140139

META.ymlH A D19-Jun-2003249 108

Makefile.PLH A D04-Jun-2003288 1411

READMEH A D04-Jun-2003664 3017

_anubis.cH A D03-May-202240.3 KiB1,102731

ppport.hH A D04-Jun-200314.4 KiB541271

typemapH A D04-Jun-200324 31

README

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