Skip to content

SecureCrypt is a robust tool for encrypting and decrypting files in specified directories using AES encryption. It includes error handling and generates detailed Excel reports on the encryption and decryption processes.

License

Notifications You must be signed in to change notification settings

yashksaini-coder/SecureCrypt

 
 

Repository files navigation

SecureCrypt

SecureCrypt is a Python package that provides advanced encryption and decryption capabilities, allowing you to securely handle sensitive data. This documentation will guide you through the installation process, explain the features of SecureCrypt, and provide examples of how to use it.

Table of Contents


Installation

To install SecureCrypt, you can use pip. Open your terminal and run the following command:

pip install SecureCrypt

Features

SecureCrypt offers the following features:

  • Encryption: Securely encrypt your data using advanced cryptographic techniques.
  • Decryption: Easily decrypt your encrypted data.
  • Support for various encryption algorithms: SecureCrypt supports a wide range of encryption algorithms, allowing you to choose the one that best suits your needs.

Usage

SecureCrypt can be used in two different ways, depending on your preference. Here are the examples for both approaches:

Approach 1: Importing the encrypt and decrypt functions

from SecureCrypt import encrypt, decrypt

# Encrypting data
encrypt(current_minute,r'path_to_file',file_password)

# Decrypting data
decrypt(current_minute,r'path_to_file',file_password)

Approach 2: Importing the SecureCrypt module

import SecureCrypt

# Encrypting data
SecureCrypt.encrypt(current_minute,r'path_to_file',file_password)

# Decrypting data
SecureCrypt.decrypt(current_minute,r'path_to_file',file_password)

Make sure to replace current_minute with the actual data you want to encrypt or decrypt, r'path_to_file' with the path to the file you want to encrypt or decrypt, and file_password with the password you want to use for encryption or decryption.


License

SecureCrypt is licensed under the MIT License. Feel free to use, modify, and distribute this package according to the terms of the license.

About

SecureCrypt is a robust tool for encrypting and decrypting files in specified directories using AES encryption. It includes error handling and generates detailed Excel reports on the encryption and decryption processes.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%