Skip to content

Latest commit

 

History

History
60 lines (37 loc) · 1.59 KB

File metadata and controls

60 lines (37 loc) · 1.59 KB
# SecurePassCheck

SecurePassCheck is a Python script designed to evaluate the strength of passwords and securely hash them using the SHA-256 algorithm.

## Features

- Password strength assessment based on length, character diversity, and complexity.
- Secure hashing of passwords for enhanced data protection.
- Simple command-line interface for ease of use.

## Getting Started

To use SecurePassCheck, follow these steps:

1. Clone the repository to your local machine:

   ```bash
   git clone https://github.com/your-username/SecurePassCheck.git
  1. Navigate to the project directory:

    cd SecurePassCheck
  2. Run the script:

    python secure_passcheck.py
  3. Enter your password when prompted, and the script will display its strength and hashed form.

Contributing

Contributions are welcome! If you'd like to contribute to SecurePassCheck, please follow these guidelines:

  • Fork the repository.
  • Create a new branch (git checkout -b feature/improvement).
  • Make your changes.
  • Commit your changes (git commit -am 'Add new feature').
  • Push to the branch (git push origin feature/improvement).
  • Create a new Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgements

  • Thanks to Python for the programming language.
  • Special thanks to Hashlib for the secure hashing functionality.

Feel free to modify and customize it to better fit your project's specifics and your preferences.