var fDesc=new Array(); fDesc[0] = "Is scrambling process in which files are made unreadable until the specific decryption method has been employed. The most common use of software file encryption is to protect your private files, documents and informations.

Cryptography is an old science and it has been used for decades by governments and armies around the world to protect their confidential data. Nowadays, cryptography took its place in our computers, allowing ordinary users to use the most advanced algorithms to protect their private files.

Once encrypted, your files would be unreadable. The files can be brought back to a readable state by decrypting."; 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 = ''; } }