Developed a Password Strength Checker in C that analyzes password complexity and categorizes passwords as Weak, Medium, or Strong. The program validates passwords using security criteria such as minimum length, character diversity, numeric digits, and special symbols, promoting better cybersecurity practices.
This project is a simple Password Strength Checker developed in C. It evaluates the strength of a password based on various security parameters, including:
- Password length
- Uppercase letters (A-Z)
- Lowercase letters (a-z)
- Numeric digits (0-9)
- Special characters (!, @, #, $, etc.)
- Detects weak, medium, and strong passwords
- Provides password strength feedback
- Simple and beginner-friendly implementation
- Uses standard C programming concepts
- C Programming Language
- GCC Compiler