password strength checker using zxcvbn written in Zig
Find a file
2025-05-02 00:25:57 -04:00
src Upload files to "src" 2025-05-02 00:16:29 -04:00
build.zig Upload files to "/" 2025-05-02 00:16:07 -04:00
build.zig.zon Upload files to "/" 2025-05-02 00:16:07 -04:00
LICENSE Initial commit 2025-05-02 00:14:03 -04:00
README.md Update README.md 2025-05-02 00:25:57 -04:00

passwdchk

password strength checker using zxcvbn written in Zig

Install

Any optimization mode should work. Everything is compiled and statically linked through the build.zig so no external dependencies are needed.

zig build -Doptimize=ReleaseFast

Note

This program only works with Linux as it makes Linux specific syscalls for termios. Maybe in the future, I will make it work on all POSIX systems. At least BSD. (unlikely)

Library Used

zxcvbn-c