With Lionytics™ you can mask, anonymize, de-identify, and encrypt your data. No need for indepth knowledge about data masking, anonymization, de-identification or encryption technologies. The library is designed to be used by novice, intermediate and expert developers, with a few simple calls you can protect any data. Lionytics™ supports .NET 3.5 / 4.0 / 4.5 & 4.5.1, you can use it in windows forms or web applications.
Helper libraries for Microsoft SQL, MySQL, SQLite, CSV, & XML are included.
Lionytics™ for .NET comes with extensive documentation, data samples, and demo projects. Lionytics™ for .NET comes with extensive documentation, data samples, and demo projects.
Quick Example:
public void MaskData()
{
Mask Masker = new Mask();
Masker.CharacterSign = '@';
Masker.NumberSign = '#';
string Email = Masker.EmailAddress("test@test.com",true));
string CreditCard = Masker.CreditCard("2222-2222-2222-2222",false));
string AllText = text = Masker.AllText(fulltext, false);
}