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

..03-May-2022-

lib/Authen/H19-Jul-2017-1,131635

t/H19-Jul-2017-1,048981

.gitignoreH A D19-Jul-2017163 1413

Build.PLH A D19-Jul-20172.3 KiB10096

ChangesH A D19-Jul-20173.6 KiB13074

MANIFESTH A D19-Jul-2017350 2726

META.jsonH A D19-Jul-20171.9 KiB7877

META.ymlH A D19-Jul-20171.2 KiB5251

READMEH A D19-Jul-20171.5 KiB5134

SIGNATUREH A D19-Jul-20172.1 KiB4942

README

1NAME
2
3Authen::DecHpwd - DEC VMS password hashing
4
5DESCRIPTION
6
7This module implements the SYS$HASH_PASSWORD password hashing function
8from VMS (also known as LGI$HPWD), and some associated VMS username and
9password handling functions.
10
11The password hashing function is implemented in XS, with a hideously
12slow pure Perl backup version for systems that can't handle XS.
13
14INSTALLATION
15
16	perl Build.PL
17	./Build
18	./Build test
19	./Build install
20
21AUTHOR
22
23The original C implementation of LGI$HPWD was written by Shawn Clifford.
24The code has since been developed by Davide Casale, Mario Ambrogetti,
25Terence Lee, Jean-loup Gailly, Solar Designer, and Andrew Main (Zefram).
26
27Mike McCauley <mikem@open.com.au> created the first version of
28"Authen::DecHpwd", establishing the Perl interface.  This was based on
29Shawn Clifford's code without the later developments.
30
31Andrew Main (Zefram) <zefram@fysh.org> created a new "Authen::DecHpwd"
32based on the more developed C code presently used, and added ancillary
33functions.
34
35COPYRIGHT
36
37Copyright (C) 2002 Jean-loup Gailly <http://gailly.net>
38
39Based in part on code from John the Ripper, Copyright (C) 1996-2002
40Solar Designer
41
42Copyright (C) 2006, 2007, 2009, 2010, 2011, 2017
43Andrew Main (Zefram) <zefram@fysh.org>
44
45LICENSE
46
47This module is free software; you can redistribute it and/or modify it
48under the terms of the GNU General Public License as published by the
49Free Software Foundation; either version 2 of the License, or (at your
50option) any later version.
51