Encryption with Password Protected

HOW TO:

Encrypt a string with Password protected
var myResult = ncTools.Crypto.Encrypt("Oracle","PasswordHere");
Result: Wyo7oqVK+jM8D/oNzX67Mw==
Decrypt an encrypted string with password protected
var myResult = ncTools.Crypto.Decrypt("Wyo7oqVK+jM8D/oNzX67Mw==","PasswordHere"); 
Result: Oracle
Download the ncTools Library here. ncTools.zip

Add Feedback