var fDesc=new Array(); fDesc[0] = "Easy Crypter 2010 program provides encryption and decryption of the single or multiple files as well as string (text). It is using TripleDES as a cryptographic algorithm. This is a block encryption algorithm with a symmetric key, i.e. one key is used for both encryption and decryption of data.

Easy Crypter 2010 provides reliable data protection from unauthorized access. The encryption algorithm used in the program resists all possible types of break-in: despite decades of researchers’ efforts, effective attacks on it were not found. It can be used either by organizations to protect trade secrets, or by individuals to store personal information in secrecy.

Main features:
- reliable encryption algorithm - TripleDES;
- high speed data processing;
- simple and intuitive interface;
- the ability of simultaneous encryption / decryption of multiple files;
- a separate interface for working with the text."; 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 = ''; } }