Skip to content

Latest commit

 

History

History
41 lines (36 loc) · 1.88 KB

README.md

File metadata and controls

41 lines (36 loc) · 1.88 KB

ZIP Locker

Description

ZIPLocker is a Python program designed to create or update encrypted ZIP files securely. It offers a simple command-line interface to lock ZIP files with strong encryption, ensuring the confidentiality of your archived data. This tool utilizes AES encryption with strong password requirements to enhance the security of your ZIP files.

Features

Strong Encryption: ZIPLocker employs AES encryption to secure your ZIP files, providing robust protection against unauthorized access. Password Strength Check: Before encrypting the ZIP file, ZIPLocker verifies the password strength to ensure it meets minimum security requirements. Automatic Password Generation: For convenience, ZIPLocker generates a strong password if the user-provided password is deemed weak.

Usage


  python ZIPLocker.py --zipfile  --addfile   ...
--zipfile, -z: Specify the ZIP file to create or update.
--addfile, -a: Specify one or more files to add to the ZIP file(s)
  

Prerequisites

Python 3.x
PyZipper library (pip install pyzipper)
Colorama library (pip install colorama)

How to Run

Clone the repository.
Install dependencies using pip install -r requirements.txt.
Run the script using Python:
python ZIPLocker.py --zipfile <ZIP_FILE> --addfile ....

Example


  python ZIPLocker.py --zipfile archive.zip --addfile document.txt image.jpg
  

Note

Ensure that strong passwords are used to enhance the security of your encrypted ZIP files. Forgetting the password will result in permanent loss of access to the encrypted data.