Skip to content
This repository has been archived by the owner on Nov 6, 2021. It is now read-only.

Job79/EasyEncrypt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

79 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EasyEncrypt


Wrapper around the SymmetricAlgorithm class that makes encrypting strings, arrays, streams and files simple

// Create encrypter with default algorithm (AES) and generate a new random key
var encrypter = new EasyEncrypt();
            
// Encrypt and decrypt a string
var encryptedString = encrypter.Encrypt("Example data");
var decryptedString = encrypter.Decrypt(encryptedString);

//! See EasyEncrypt.Examples for more 

About

Wrapper around the .net SymmetricAlgorithm class to make encrypting strings, arrays, streams and files simple.

Topics

Resources

License

Stars

Watchers

Forks

Languages