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

..03-May-2022-

examples/H01-Apr-2016-341277

ChangesH A D01-Apr-2016710 2516

HCE_MD5.pmH A D01-Apr-20164.9 KiB17899

MANIFESTH A D01-Apr-2016276 1211

META.jsonH A D01-Apr-2016869 4342

META.ymlH A D01-Apr-2016475 2423

Makefile.PLH A D07-Apr-1999308 107

READMEH A D01-Apr-2016739 1713

test.plH A D01-Apr-20168.3 KiB350297

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