File: control

package info (click to toggle)
libcrypt-hcesha-perl 0.70-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 76 kB
  • ctags: 36
  • sloc: perl: 613; makefile: 43
file content (26 lines) | stat: -rw-r--r-- 1,167 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Source: libcrypt-hcesha-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 4.0.0)
Build-Depends-Indep: perl (>= 5.6.0-17), libdigest-sha1-perl
Maintainer: Jonas Genannt <jonas.genannt@capi2name.de>
Standards-Version: 3.8.0

Package: libcrypt-hcesha-perl
Architecture: all
Depends: ${perl:Depends}, libdigest-sha1-perl, libmime-base64-perl
Description: Perl extension for one way hash chaining encryption using SHA
 This module implements a chaining block cipher using a one way hash.  This
 method of encryption is the same that is used by radius (RFC2138) and is also
 described in Applied Cryptography.
 .
 Two interfaces are provided in the module.  The first is straight block
 encryption/decryption the second does base64 mime encoding/decoding of the
 encrypted/decrypted blocks.
 .
 The idea is that the two sides have a shared secret that supplies one of the
 keys and a randomly generated block of bytes provides the second key.  The
 random key is passed in cleartext between the two sides.
 .
 An example client and server are packaged as modules with this module.  They
 are used in the tests. They can be found in the examples directory.