var fDesc=new Array();
fDesc[0] = "CipherSafe.NET™ is a software product, which solves the problem of data protection for Windows® applications running on systems with .NET Framework. It can be used to encrypt and store database connection strings, passwords, encryption keys, and other application secrets in a secure manner.
- Encryption and decryption of application profile values.
- Secure storage and retrieval of application profile values.
- Ability to export and import application profiles from one computer to another (with safeguards).
- Effective authorization rules.
- Auditing of administrative operations.
- Cryptographic key management.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}