password_generator

Version, currently 0.23 versions

github.com/twent/password-generator

Password generator app created with Crystal lang

0 stars
0 dependents
License: MIT

Nothing has been indexed for 0.2 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.

Installation

# Add this to your shard.yml
dependencies:
  password_generator:
    github: twent/password-generator
    version: ~> 0.2

Then run:

shards install

shard.yml

No shard.yml has been indexed for 0.2. You can read it on the repository.

Dependencies

Unknown: the shard.yml for this version has not been read yet.

README

This README is the one indexed from the repository at its latest ref, not from the tag for this version.

Strong password generator app created with Crystal lang

Available:

https://passgen.itqot.ru/

App Screenshot

Features:

  • Password length from 4 to 128 characters
  • Uppercase
  • Lowercase
  • Numbers
  • Symbols (!@#$%^&*()_+-=[]{}|;:,.<>?)
  • Excluding ambigious
  • Excluding consecutive character repeats
  • Copy to buffer button
  • QR code generation for password with download possibility

Using locally:

  1. Clone this repo
  2. shards install
  3. crystal src/password_generator.cr

Building for production:

  1. crystal build src/password_generator.cr --release --no-debug
  2. Create user on server
useradd -m -s /bin/false passgen
  1. Copy compiled file, add execution rights
  2. Copy service file on server and edit if you need
  3. Enable service start at boot
systemctl enable passgen.service
systemctl daemon-reload
  1. Start the service
systemctl start passgen.service