var fDesc=new Array();
fDesc[0] = "Cubelox Hash is the new solution by Cubelox that gives you the capability to calculate the hash values of your files.
- Hashvalue of a file is its signature. Specifically, a hash value is a signature of the file’s data that makes it unique.
- There are many algorithms to calculate a hash value of a file
Cubelox Hash uses the most modern and secure hash algorithms:
- MD5 (Message-Digest Algorithm 5)
- SHA Algorithms (Designed by NSA):
1. SHA1
2. SHA256
3. SHA384
4. SHA512
- Ripe (RACE Integrity Primitives Evaluation Message Digest)";
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 = '';
}
}