Skip to content

Latest commit

 

History

History
16 lines (15 loc) · 633 Bytes

README.md

File metadata and controls

16 lines (15 loc) · 633 Bytes

DataEncryptor and Saver

Encrypt and save your data using two different method of your choice 1.MD5 2.Ri Jndael

Convert To MD5 Hash in C#

Use namespace cryvis.Encryption and simply type EncodeToMD5(params). Data is convertable to string , int , float, long , decimal , double.

Encrypt using Ri Jndael Method

Use namespace cryvis.Encryption and simply type Encrypt(params) to encrypt and to Decrypt(params) to decrypt your data.

Data Saving Example

Save and load Data with encryption simply with two lines Save(params) and Load(params). use namespace cryvis.DataSaving.

Read the code for further information on how to use it.