DaniellSousa / dancrypt

Library for simple encrypt and decrypt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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)

About

Library for simple encrypt and decrypt


Languages

Language:Python 100.0%