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

..03-May-2022-

examples/H30-Jun-2003-199144

t/H30-Jun-2003-8167

ChangesH A D30-Jun-2003138 74

INSTALLH A D26-Jun-2003118 106

LICENSEH A D25-Jun-200317.6 KiB341281

MANIFESTH A D26-Jun-2003280 2524

META.ymlH A D30-Jun-2003247 108

Makefile.PLH A D26-Jun-2003286 1411

READMEH A D26-Jun-2003638 2917

Shark.pmH A D30-Jun-20033.3 KiB14411

Shark.xsH A D26-Jun-20031.9 KiB9681

_shark.cH A D30-Jun-2003110.9 KiB1,8891,738

ppport.hH A D25-Jun-200314.4 KiB541271

typemapH A D26-Jun-200323 31

README

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