Skip to content

wellyngtond2/CesarEasyCrypto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CesarEasyCrypto

Cesar Encryption Implementation.
Implentação da Criptografia de Cesar

Getting Started / Iniciando

Do a project rebuild and copy a generated DLL and import it into your project.
Faça um rebuild do projeto e cópie a DLL gerada e importe em seu projeto.

Give an example / Exemplo

First add using in your class.
Primeiro adicione a referência em sua classe.
using CesarCrypt.Service;

In your method

Encrypt / Encriptando

string NormalText = "abcd";
string EncryptedText = CryptoService.Encrypt(NormalText, 1);// output "bcde"
string EncryptedText2 = CryptoService.Encrypt(NormalText, 2);// output "cdef"

Decrypt / Descriptando

string NormalText = "abcd";
string EncryptedText = CryptoService.Decrypt(NormalText, 1);// output "zabc"
string EncryptedText2 = CryptoService.Decrypt(NormalText, 2);// output "yzab"

Authors

License

This project is licensed under GNU General Public License v2.0 - see the LICENSE file for details

About

Cesar Encryption Implementation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published