Skip to main content

A simple encryption library

Project description

EncryptMe Library

EncryptMe is a simple encryption library developed by ADJEI COLLINS, a Cybersecurity student from Accra Technical University, Ghana.

Features

  • Encrypt and decrypt messages using a provided key.
  • Save encrypted messages to files.
  • Read encrypted messages from files.
  • Display decrypted messages.

Installation

You can install the library using pip: pip install encryptme

pip install encryptme

Change Log
==========

1.5.0 (22/08/2023)

## USAGE GUIDE
# This guide demonstrates how to use the 'encryptme' library to encrypt and decrypt messages.
import encryptme

# Encryption key (known only to the sender)
encryption_key = 12345

# Message to encrypt
message = "Hello, this is a secret message!"

# Encrypt the message
encrypted_message = encryptme.encrypt(message, encryption_key)

# Save encrypted message to a file
encrypted_message.save("encrypted_message.txt")

# Decrypting the message
# (Importing the module again to ensure access to all functions)
import encryptme

# Encryption key (known only to the receiver)
decryption_key = 12345

# Read encrypted message from the file
encrypted_message = encryptme.read("encrypted_message.txt")

# Decrypt the message
decrypted_message = encryptme.decrypt(encrypted_message, decryption_key)

# Show decrypted message
decrypted_message.show()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

encryptme-2.2.5.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

encryptme-2.2.5-py3-none-any.whl (3.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page