var fDesc=new Array();
fDesc[0] = "SecureBridge represents clients and servers for SSH, SFTP and SSL protocols as a network security solution. It can protect any TCP network traffic using SSH or SSL secure transport layer protocols to provide authentication for client. It is a solution for developing applications using various IDEs as RAD Studio, Delphi, C++Builder, Lazarus (FPC) on Windows, Mac OS X, iOS, Linux, FreeBSD and now with support for RAD Studio XE6 and iOS application development in C++Builder.
Key features:
* RAD Studio XE6
* NEXTGEN compiler support
* Android application development support.
* iOS application development support
* Mac OS X development support
* Win64 development support
* Full support for SSH, SSL, and TLS protocols
* Fast and customizable SSH server, SSH client, and SSL client
* Support for most SSH2-compatible clients and servers including OpenSSH
* Support for all versions of the SFTP protocol
* Fast and customizable SFTP client and server
* Does not require external modules
* Protection against diverse crypto attacks
* Integration with Indy, MyDAC, and PgDAC
* Support for SHA1 and MD5 hashing algorithms
* Authentication by password or by public key
* Compatible with any TCP application
* High performance
* Reliable and convenient maintenance of asymmetric keys
* Facility for storing users, passwords, and public keys for an SSH server IDE
* IPv6 protocol support
* Full support for the SFTP protocols versions from 1 to 6
Supported Target Platforms: Windows, 32-bit and 64-bit, Mac OS X, iOS, Android, Linux, 32-bit and 64-bit (only in Lazarus and Free Pascal), FreeBSD (only in Lazarus and Free Pascal)";
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 = '';
}
}