dancrypt

A Simple Encryptor and Decryptor


Keywords
key, password, security, encrypt, decrypt, text, message
License
Other
Install
pip install dancrypt==0.4

Documentation

DanCrypt - A Simple Encryptor and Decryptor


Using DanCrypt you can ecnrypt and decrypt messages for your diverses motives.

Overview

For anybody text written you can use DanCrypt. Features:

  • Encrypt any message/text written.
  • Decrypt any message/text generated by DanCrypt

How Install

You should use the follow command pip:
pip install dancrypt

How use

from dancrypt import DanCrypt

dan_c = DanCrypt()

teste = "Daniel Monteiro"
msg_encrypited = dan_c.e_crypt(teste)
msg_decrypited = dan_c.d_crypt(msg_encrypited)

print(msg_encrypited)
print(msg_decrypited)