-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
48 lines (32 loc) · 1.25 KB
/
README
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Crypt::PwGen
==================
A perl interface for pwgen, a password generator by Theodore Ts'o
As pwgen itself does not come as a library, a slightly modified source
package is required; feel free to fetch it from github:
https://github.com/bnutzer/pwgen
See the perl documentation (perldoc Crypt::PwGen) for more information
and usage.
Installation
============
To install this module type the following:
perl Makefile.PL
make
make install
Bugs
====
pwgen is an executable program; linking its object files to an .so file
does not make it a good shared library. Especially, it relies on a
global variable.
When modifying the lib's behavior through the pwgen_XX functions, you
may experience all kinds of weird and undesirable behavior, including
segfaults or insecure passwords.
Copyright and licence
=====================
Copyright (C) 2014 Bastian Friedrich <[email protected]
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.8 or,
at your option, any later version of Perl 5 you may have available.
pwgen itself is GPL2 or later.
The package contains the perl module Devel::CheckLib. Its
copyright belongs to the respective authors.