var fDesc=new Array(); fDesc[0] = "SecExMD5 generates message digest signatures of files. Message digests are digital fingerprints commonly published by distributors of computer software and other digital documents so that end users may verify the authenticity of such documents. Any attempt by a third party to tamper with a digital document invariably alters its digital fingerprint.

A number of competing standards for the generation of digital signatures or message digests exist. The common standards are MD5, SHA-1 and RIPEMD-160. SecExMD5 supports all three standards.

Main features:
-a graphical wizard style interface
-full integration with Windows explorer right-click menus
-multiple file processing
-one-click email support for MAPI based email clients for easy distribution of digital signatures via email."; 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 = ''; } }