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

..03-May-2022-

examples/H26-Mar-2004-341281

ChangesH A D26-Mar-2004719 3020

HCE_SHA.pmH A D26-Mar-20044.1 KiB16186

MANIFESTH A D26-Mar-2004192 1110

META.ymlH A D26-Mar-2004374 1311

Makefile.PLH A D12-Nov-2003308 107

READMEH A D12-Nov-2003742 1713

test.plH A D26-Mar-20048 KiB341289

README

1     This module implements a chaining block cipher using a one
2     way hash.  This method of encryption is the same that is
3     used by radius (RFC2138) and is also described in Applied
4     Cryptography.
5
6     Two interfaces are provided in the module.  The first is
7     straight block encryption/decryption the second does base64
8     mime encoding/decoding of the encrypted/decrypted blocks.
9
10     The idea is the the two sides have a shared secret that
11     supplies one of the keys and a randomly generated block of
12     bytes provides the second key.  The random key is passed in
13     cleartext between the two sides.
14
15     An example client and server are packaged as modules with
16     this module.  They are used in the tests.
17