var fDesc=new Array();
fDesc[0] = "RAR Key recovers passwords for RAR archives.
Main Features:
- All versions of RAR are supported including 3.x
- Recovers passwords using advanced password recovery attacks: Dictionary, Xieve, Brute-force, Known Password/Part, Previous Passwords, and their combinations
- Uses multiple-core CPUs and NVIDIA GPUs efficiently to speed up the password recovery process by 15 times
- Uses 9 built-in dictionaries for multi-lingual passwords
- Supports password modifications, including case changes, reversed words, etc.
- Includes a Wizard for easy setup of password recovery attacks
- Combines attacks for passwords like "strong123password"
- All recovered passwords are saved and ready to be reused on other files
- Program automatically saves password search state and can resume after a stop or a crash
- Full install/uninstall support";
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 = '';
}
}