var fDesc=new Array();
fDesc[0] = "PSAS (Phone System Analysis Software) is a very useful tool with allot of features.
Main features:
- Search for Algorithms: This function lets you extract useful info about algorithms and public keys to be found in binarys, so you can easily find the corresponding functions using an disassembler
- Search for Functions: This function lets you find common functions in any binary, so you can easily find functions at the given addresses using a disassembler
- Find Security Password: This function searches for the SP in firmware binaries.";
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 = '';
}
}