https://github.com/pbenner/pwgen
Simple password generator
https://github.com/pbenner/pwgen
Last synced: about 1 month ago
JSON representation
Simple password generator
- Host: GitHub
- URL: https://github.com/pbenner/pwgen
- Owner: pbenner
- Created: 2022-03-19T16:13:55.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-19T16:14:48.000Z (about 4 years ago)
- Last Synced: 2025-01-12T20:21:48.896Z (over 1 year ago)
- Language: Shell
- Size: 223 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Installation
It is necessary to export some environment variables for a local installation. Here is an example:
export PATH=$HOME/.usr/bin:$PATH
export CPATH=$HOME/.usr/include
export LD_LIBRARY_PATH=$HOME/.usr/lib:$LD_LIBRARY_PATH
export LIBRARY_PATH=$HOME/.usr/lib:$LIBRARY_PATH
export MANPATH=$HOME/.usr/share/man:$MANPATH
export PYTHONPATH=$HOME/.usr/lib/python2.7/site-packages/:$PYTHONPATH
First create all autoconf and automake files with
autoreconf
For local installations to *$HOME/.usr* use
./configure --prefix=$HOME/.usr
and otherwise simply
./configure
Now the source can be compiled and installed with
make
make install
The configuration file *~/.pwgen.conf* has to be installed manually. An example file *src/pwgen.conf* is available. The file contains a field called *seed-init* which should be set to a random integer. Passwords are generated using the initial seed and the private password.