sdip15fa / spg

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple password generator.
Sample runs:

v1.0 link to video
Left: v2.0, Right: v1.2, both running on windows 11, with default configuration but 999999 digits.

Features

  • Copy to clipboard (windows)

Options

- upper case (y/n)         default = y
- lower case (y/n)         default = y
- special characters (y/n) default = y
- numbers (y/n)            default = y
- digits                   default = 10

Windows

Linux

v2.1:

wget https://gitlab.com/wcyat/simple-password-generator/uploads/61ec45fc5585d662f1ba624ea2df0d4b/simple-password-generator-v2.1.run
chmod +x simple-password-generator-v2.1.run
./simple-password-generator-v2.1.run

Build

Windows

Prerequisites

Steps

Clone/download the repository, open windows/password-generator.sln with visual studio, then build with release mode.

Linux

Prerequisites

  • debian linux
  • g++:
sudo apt install g++
#sudo apt install build-essential

Steps

git clone https://gitlab.com/wcyat/simple-password-generator.git #clone the repository
cd simple-password-generator/linux
g++ pg.cpp -o spg.run

Now you can run it.

./spg.run

Optional

sudo cp spg.run /bin/spg

Now you can run it with:

spg

in any directories

MacOS

Prerequisites

  • xcode
  • git

Steps

git clone https://gitlab.com/wcyat/simple-password-generator.git #clone the repository
cd simple-password-generator/macos
g++ pg.cpp -o spg.run

Now you can run it.

chmod 755 spg.run
./spg.run

About

License:MIT License


Languages

Language:C++ 78.2%Language:Python 18.0%Language:Shell 3.8%