Skip to content

psc

A command line tool to check the strength of a password.

DISCLAIMER

This is simply a research project, and not a secure password strength checker. If you'd like to really check whether your password is secure, use a proper tool for it.

Build instructions

  1. Clone this repository.

    sh
    git clone https://gitlab.com/noClaps/psc.git
    cd psc
  2. Build the package.

    sh
    make build

    You can then run ./psc -h.

Usage

USAGE: psc <password>

ARGUMENTS:
  <password>              The password to check strength.

OPTIONS:
  -h, --help              Show help information.

You can use the tool simply by running:

sh
psc password123 # Replace "password123" with your password

You can view the help by using -h or --help:

sh
psc -h
psc --help

Completions

You can generate completions for your shell using the --generate-completion-script flag:

sh
psc --generate-completion-script bash
psc --generate-completion-script zsh
psc --generate-completion-script fish

Released under the 0BSD license.