Metadata-Version: 2.1
Name: SecureCrypt
Version: 1.0.0
Summary: This script encrypts or decrypts files in a specified folder using a password, records the process in an Excel report, and handles errors during encryption and decryption.
Home-page: https://github.com/deepanshu414
Author: Deepanshu antil
Author-email: deepanshuantil4113@gmail.com
License: MIT
Description-Content-Type: text/markdown
Requires-Dist: pyAesCrypt
Requires-Dist: pandas
Requires-Dist: openpyxl

# SecureCrypt

SecureCrypt is a Python package for encryption and decryption. It provides a simple and secure way to handle sensitive data by leveraging advanced cryptographic techniques.

## Features
- **Encryption**: Securely encrypt your data.
- **Decryption**: Easily decrypt your encrypted data.
- **Support for various encryption algorithms**.


## Example

from SecureCrypt import encrypt,decrypt<br>
encrypt(current_minute,r'c\user\filename',file_password)<br>
decrypt(current_minute,r'c\user\filename',file_password)<br>

**OR**

import SecureCrypt<br>
SecureCrypt.encrypt(current_minute,r'c\user\filename',file_password)<br>
SecureCrypt.decrypt(current_minute,r'c\user\filename',file_password)<br>

## Installation

You can install SecureCrypt using pip:
  ```sh
  pip install SecureCrypt

