Easy to use passwort generator
Required:
- – Linux / Windows OS
- – C-Compiler with default distro dev-utilities(GCC 3.x and 4.x, VC tested)
Features:
- – Easy to use password-generator for your console 🙂
- – Password-length can be defined as argument
- – Uses usecs as seed, on linux there is also /dev/urandom used
Install and use on Windows (with VC (Express)):
- 1. Extract the .zip file anywhere on your hd.
- 2. Create a new project in VC and import the extracted file as main file.
- 3. Compile as “Release”. The .exe file should be placed in your project folder.
- 4. Using is easy. Just type “[your .exe name] password-length” in windows console.
Install and use on Linux (with GCC):
- 1. Extract the .zip file anywhere on your hd.
- 2. “cd” to the location of your extracted file.
- 3. Compile with command “gcc -O2 main.c -o passgen”
- 4. Using is easy. Just type “./passgen password-length” in linux console.