come and go encryption
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3380
VaultletSuite 2 Go for Linux 2.6.3
"VaultletSuite 2 Go is the first industrial strength privacy protecting software more>> , VaultletSuite 2 Go is the first industrial strength privacy protecting software thats a snap to use, installs on your computer or goes anywhere with you on your USB drive, and runs on 4 different operating systems.
Not only that, but it supports the top 10 languages used on the internet, along with providing Right-to-Left text rendering support in VaultletMail for Hebrew and Farsi.
Simply put, its the easiest and most secure way to protect and control your spam-free email, passwords and other important files wherever you and USB drive may roam.<<less
Download (21.29MB)
Added: 2009-04-05 License: Freeware Price: Free
201 downloads
Checkpoint Commander 6.1.0
Checkpoint Commander is a cross-platform file management, viewing, and archiving / security tool. more>>
Checkpoint Commander is a cross-platform file management, viewing, and archiving / security tool.
Checkpoint Commander project includes optional archive encryption using AES (AES-CBC-HMAC-SHA1).
<<lessCheckpoint Commander project includes optional archive encryption using AES (AES-CBC-HMAC-SHA1).
Download (5.1MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
813 downloads
CryptoCD 1.4.2
CryptoCD is a collection of software that provides secure communication through the Internet. more>>
CryptoCD is a collection of software that provides secure communication through the Internet. The programs cover tasks like email encryption, secure chat, and anonymous Web browsing.
CryptoCD comes with comprehensive documentation explaining step by step installation and use of the software for unexperienced users. The project focuses on German-speaking users.
Enhancements:
- This release has been updated to Firefox 2.0.0.5 (OS X and Windows), Thunderbird 2.0.0.5 (Windows) and 1.5.0.12 (OS X), Enigmail 0.95.2 (Windows) and 0.94.4 (OS X and Linux), and Vidalia 0.0.12 (OS X and Windows).
- The documentation was also updated.
- This version comes with a new cover.
<<lessCryptoCD comes with comprehensive documentation explaining step by step installation and use of the software for unexperienced users. The project focuses on German-speaking users.
Enhancements:
- This release has been updated to Firefox 2.0.0.5 (OS X and Windows), Thunderbird 2.0.0.5 (Windows) and 1.5.0.12 (OS X), Enigmail 0.95.2 (Windows) and 0.94.4 (OS X and Linux), and Vidalia 0.0.12 (OS X and Windows).
- The documentation was also updated.
- This version comes with a new cover.
Download (114.9MB)
Added: 2007-08-02 License: Free for non-commercial use Price:
815 downloads
Encrypt This! 0.1.1
Encrypt This! is a Firefox extension that allows public key like encryption as well as passphrase methods. more>>
Encrypt This! is a Firefox extension that allows public key like encryption as well as passphrase methods.
Visit the extensions homepage to set up public and private keys or just go ahead with a passphrase of your own creation.
Using this extension you can select text and have it encrypted in one click. This will allow you to send emails more securely by ensuring that nobody other than your intended recipient can read the decrypted text.
<<lessVisit the extensions homepage to set up public and private keys or just go ahead with a passphrase of your own creation.
Using this extension you can select text and have it encrypted in one click. This will allow you to send emails more securely by ensuring that nobody other than your intended recipient can read the decrypted text.
Download (0.045MB)
Added: 2007-07-26 License: MPL (Mozilla Public License) Price:
820 downloads
RPC::pClient 0.1005
RPC::pClient is a Perl extension for writing pRPC clients. more>>
RPC::pClient is a Perl extension for writing pRPC clients.
SYNOPSIS
use RPC::pClient;
$sock = IO::Socket::INET->new(PeerAddr => joes.host.de,
PeerPort => 2570,
Proto => tcp);
$connection = new RPC::pClient(sock => $sock,
application => My App,
version => 1.0,
user => joe,
password => hello!);
pRPC (Perl RPC) is a package that simplifies the writing of Perl based client/server applications. RPC::pServer is the package used on the server side, and you guess what RPC::pClient is for. See RPC::pClient(3) for this part.
pRPC works by defining a set of of functions that may be executed by the client. For example, the server might offer a function "multiply" to the client. Now a function call
@result = $con->Call(multiply, $a, $b);
on the client will be mapped to a corresponding call
multiply($con, $data, $a, $b);
on the server. (See the funcTable description below for $data.) The function calls result will be returned to the client and stored in the array @result. Simple, eh?
Client methods
new
The client constructor. Returns a client object or an error string, thus you typically use it like this:
$client = RPC::pClient->new ( ... );
if (!ref($client)) {
print STDERR "Error while creating client object: $clientn";
} else {
# Do real stuff
...
}
Call
calls a function on the server; the arguments are a function name, followed by function arguments. It returns the function results, if successfull. After executing Call() you should always check the error attribute: An empty string indicates success. Thus the equivalent to
$c = Add($a, $b)
# Use $c
...
is
$c = $client->Call("Add", $a, $b);
if ($client->error) {
# Do something in case of error
...
} else {
# Use $c
...
}
CallInt
Similar to and internally used by Call. Receives the same arguments, but the result is prepended by a status value: If this status value is TRUE, then all went fine and the following result array is valid. Otherwise an error occurred and the error message follows immediately after the status code. Example:
my($status, @result) = $client->CallInt("Add", $a, $b);
if (!$status) {
# Do something in case of error
my $errmsg = shift @result || "Unknown error";
...
} else {
...
}
Encrypt
This method can be used to get or set the cipher attribute, thus the encryption mode. If the method is passed an argument, the argument will be used as the new encryption mode. (undef for no encryption.) In either case the current encryption mode will be returned. Example:
# Get the current encryption mode
$mode = $server->Encrypt();
# Currently disable encryption
$server->Encrypt(undef);
# Switch back to the old mode
$server->Encrypt($mode);
<<lessSYNOPSIS
use RPC::pClient;
$sock = IO::Socket::INET->new(PeerAddr => joes.host.de,
PeerPort => 2570,
Proto => tcp);
$connection = new RPC::pClient(sock => $sock,
application => My App,
version => 1.0,
user => joe,
password => hello!);
pRPC (Perl RPC) is a package that simplifies the writing of Perl based client/server applications. RPC::pServer is the package used on the server side, and you guess what RPC::pClient is for. See RPC::pClient(3) for this part.
pRPC works by defining a set of of functions that may be executed by the client. For example, the server might offer a function "multiply" to the client. Now a function call
@result = $con->Call(multiply, $a, $b);
on the client will be mapped to a corresponding call
multiply($con, $data, $a, $b);
on the server. (See the funcTable description below for $data.) The function calls result will be returned to the client and stored in the array @result. Simple, eh?
Client methods
new
The client constructor. Returns a client object or an error string, thus you typically use it like this:
$client = RPC::pClient->new ( ... );
if (!ref($client)) {
print STDERR "Error while creating client object: $clientn";
} else {
# Do real stuff
...
}
Call
calls a function on the server; the arguments are a function name, followed by function arguments. It returns the function results, if successfull. After executing Call() you should always check the error attribute: An empty string indicates success. Thus the equivalent to
$c = Add($a, $b)
# Use $c
...
is
$c = $client->Call("Add", $a, $b);
if ($client->error) {
# Do something in case of error
...
} else {
# Use $c
...
}
CallInt
Similar to and internally used by Call. Receives the same arguments, but the result is prepended by a status value: If this status value is TRUE, then all went fine and the following result array is valid. Otherwise an error occurred and the error message follows immediately after the status code. Example:
my($status, @result) = $client->CallInt("Add", $a, $b);
if (!$status) {
# Do something in case of error
my $errmsg = shift @result || "Unknown error";
...
} else {
...
}
Encrypt
This method can be used to get or set the cipher attribute, thus the encryption mode. If the method is passed an argument, the argument will be used as the new encryption mode. (undef for no encryption.) In either case the current encryption mode will be returned. Example:
# Get the current encryption mode
$mode = $server->Encrypt();
# Currently disable encryption
$server->Encrypt(undef);
# Switch back to the old mode
$server->Encrypt($mode);
Download (0.019MB)
Added: 2007-07-24 License: Perl Artistic License Price:
823 downloads
naim 0.11.8.3.1
naim is the original ncurses (console) AIM client, which also supports IRC, ICQ, and Lily CMC. more>>
naim project is the original ncurses, console-based AIM client, which also supports IRC, ICQ, and Lily CMC.
For AIM and ICQ, it uses the TOC protocol, and includes many commonly-requested features found nowhere else, while still preserving naims classic look and feel.
Main features:
- naim includes unique features like zero-configuration peer to peer encryption, automatic message queueing, and incoming message modification (to correct common spelling mistakes and expand common abbreviations; see /help filter).
- naim also includes powerful dynamic module support, allowing developers to modify all major aspects of naims behavior.
- Third-party plug-ins have been used to extend naims functionality for use in embedded monitoring clients, and for use as host to automatic clients ("bots").
- The naim-modules package (distributed below) includes several example plug-ins, including a telnet server (nsocket), an interactive bot (naimusers), and a simple anti-spam measure (nantispam).
- When combined with GNU Screen, naim is great to use as a chat client as well as an answering machine. Individual users can detach, log out, pack up and go home, then log back in from anywhere on the Internet to resume their naim session.
- naim is maintained by an OPEN, DIRECTED COMMUNITY, and has been in development since October, 1998.
<<lessFor AIM and ICQ, it uses the TOC protocol, and includes many commonly-requested features found nowhere else, while still preserving naims classic look and feel.
Main features:
- naim includes unique features like zero-configuration peer to peer encryption, automatic message queueing, and incoming message modification (to correct common spelling mistakes and expand common abbreviations; see /help filter).
- naim also includes powerful dynamic module support, allowing developers to modify all major aspects of naims behavior.
- Third-party plug-ins have been used to extend naims functionality for use in embedded monitoring clients, and for use as host to automatic clients ("bots").
- The naim-modules package (distributed below) includes several example plug-ins, including a telnet server (nsocket), an interactive bot (naimusers), and a simple anti-spam measure (nantispam).
- When combined with GNU Screen, naim is great to use as a chat client as well as an answering machine. Individual users can detach, log out, pack up and go home, then log back in from anywhere on the Internet to resume their naim session.
- naim is maintained by an OPEN, DIRECTED COMMUNITY, and has been in development since October, 1998.
Download (0.40MB)
Added: 2007-07-13 License: GPL (GNU General Public License) Price:
834 downloads
Games::Go::SGF 0.05
Games::Go::SGF is a Perl module that can parse and dissect Standard Go Format files. more>>
Games::Go::SGF is a Perl module that can parse and dissect Standard Go Format files.
SYNOPSIS
use Games::Go::SGF;
my $sgf = new Games::Go::SGF($sgfdata);
print "Game played on ".$sgf->date."n";
print $sgf->white. " (W) vs. ".$sgf->black." (B)n";
print "Board size: ".$sgf->size.". Komi: ".$sgf->komi."n";
while ($move = $sgf->move($move_no++)) {
print "$move_no: ".$move->move,"n";
}
This is a very simple SGF file parser, of currently limited functionality. It can read and step through SGF files, follow variations, and so on. Its good enough for getting simple statistics about games of Go, and building up Games::Go::Board objects representing games stored as SGF.
$sgf->move returns either a normal Games::Go::SGF::Node or a Games::Go::SGF::Variation object. They behave exactly the same, but the variation object has the additional methods mainline() to get the main line of the game, variation($n) to get the first node in the nth variation, and variations to retrieve an array of variations. $variation->move will, by default, follow the mainline.
<<lessSYNOPSIS
use Games::Go::SGF;
my $sgf = new Games::Go::SGF($sgfdata);
print "Game played on ".$sgf->date."n";
print $sgf->white. " (W) vs. ".$sgf->black." (B)n";
print "Board size: ".$sgf->size.". Komi: ".$sgf->komi."n";
while ($move = $sgf->move($move_no++)) {
print "$move_no: ".$move->move,"n";
}
This is a very simple SGF file parser, of currently limited functionality. It can read and step through SGF files, follow variations, and so on. Its good enough for getting simple statistics about games of Go, and building up Games::Go::Board objects representing games stored as SGF.
$sgf->move returns either a normal Games::Go::SGF::Node or a Games::Go::SGF::Variation object. They behave exactly the same, but the variation object has the additional methods mainline() to get the main line of the game, variation($n) to get the first node in the nth variation, and variations to retrieve an array of variations. $variation->move will, by default, follow the mainline.
Download (0.003MB)
Added: 2007-07-12 License: Perl Artistic License Price:
835 downloads
Games::Go::SGF2misc::SVG 1.00
Games::Go::SGF2misc::SVG is a Perl package to simplify SGF game rendering using Image::LibrSVG. more>>
Games::Go::SGF2misc::SVG is a Perl package to simplify SGF game rendering using Image::LibrSVG.
SYNOPSIS
use Games::Go::SGF2misc::SVG;
my $image = new Games::Go::SGF2misc::SVG(imagesize => 3in,
boardsize => 19,
gobanColor=> white );
$image->drawGoban();
$image->placeStone(b,cd);
$image->placeStone(w,[4,2]);
$image->placeStone(b,db);
$image->placeStone(w,dc);
$image->placeStone(b,cc);
$image->placeStone(w,eb);
$image->placeStone(b,cb);
$image->addCircle(cb,1);
$image->save($filename); # As a .svg
$image->export($filename); # As a .png
<<lessSYNOPSIS
use Games::Go::SGF2misc::SVG;
my $image = new Games::Go::SGF2misc::SVG(imagesize => 3in,
boardsize => 19,
gobanColor=> white );
$image->drawGoban();
$image->placeStone(b,cd);
$image->placeStone(w,[4,2]);
$image->placeStone(b,db);
$image->placeStone(w,dc);
$image->placeStone(b,cc);
$image->placeStone(w,eb);
$image->placeStone(b,cb);
$image->addCircle(cb,1);
$image->save($filename); # As a .svg
$image->export($filename); # As a .png
Download (0.006MB)
Added: 2007-07-05 License: Perl Artistic License Price:
844 downloads
Drag de Go 0.2.5
Drag de Go is a Firefox extension that allows you to execute several commands by the direction you drag and drop. more>>
Drag de Go is a Firefox extension that allows you to execute several commands (like open link, save link, search selected text) by the direction you drag and drop.
This extension identify the Object you drag Selected Text, Link, Image, or Extension File, and you can set commands to each object.
Main features:
- Assistance of file up-loading on web page.
- Open text link. (missing URL such as "ttp://...", "tp://..." can be opened. )
- The page the link ahead, the image, and the extension, etc. can be saved.
- The place where the file and the bookmark, etc. are opened by drag & drop can be set.
- Gesture in page source window.
- Execute "open link in ... Tab" command with ctrl key pastes the URL of link to address bar.
<<lessThis extension identify the Object you drag Selected Text, Link, Image, or Extension File, and you can set commands to each object.
Main features:
- Assistance of file up-loading on web page.
- Open text link. (missing URL such as "ttp://...", "tp://..." can be opened. )
- The page the link ahead, the image, and the extension, etc. can be saved.
- The place where the file and the bookmark, etc. are opened by drag & drop can be set.
- Gesture in page source window.
- Execute "open link in ... Tab" command with ctrl key pastes the URL of link to address bar.
Download (0.086MB)
Added: 2007-06-29 License: MPL (Mozilla Public License) Price:
854 downloads
EasyCrypt 0.2
EasyCrypt is a small Python program that encrypts or dercypts files using AES encryption standard. more>>
EasyCrypt is a small Python program that encrypts or dercypts files using AES encryption standard.
The program is still in early development. It can be used to easily encrypt your files on the go with pretty good security. It works or all systems that support Python. (Windows, Unix, MacOS, ...).
The program uses PyCrypto (link here) library to encrypt/decrypt the file. (Pyhton doesnt have yet an official implementation of the AES algorythm). Since the sourceforge doesnt have any downloadable package, I included in the cvs tree the version of the library used in the program.
Usage (example):
> pycrypt --encrypt TestFile.jpg TestFile.jpg_enc mypassword
(An encrypted file has been created)
> pycrypt --decrypt TestFile.jpg_enc DecryptedFile.jpg mypassword
(The original file is recovered)
<<lessThe program is still in early development. It can be used to easily encrypt your files on the go with pretty good security. It works or all systems that support Python. (Windows, Unix, MacOS, ...).
The program uses PyCrypto (link here) library to encrypt/decrypt the file. (Pyhton doesnt have yet an official implementation of the AES algorythm). Since the sourceforge doesnt have any downloadable package, I included in the cvs tree the version of the library used in the program.
Usage (example):
> pycrypt --encrypt TestFile.jpg TestFile.jpg_enc mypassword
(An encrypted file has been created)
> pycrypt --decrypt TestFile.jpg_enc DecryptedFile.jpg mypassword
(The original file is recovered)
Download (MB)
Added: 2007-06-23 License: Free To Use But Restricted Price:
907 downloads
Sympa 5.3.2
Sympa is a scalable and highly customizable mailing list software. more>>
Sympa is a scalable and highly customizable mailing list software. Sympa can cope with big lists (780,000 subscribers), and it comes with a complete Web interface for both the user and the administrator. It is internationalized.
Sites can customize Web and mail templates, authentication backends, and authorization scenarios. Dynamic mailing lists can use multiple backends (LDAP, SQL, files, lists, or others).
Sympa is the only S/MIME enabled mailing list software, and it provides both authentication and encryption.
<<lessSites can customize Web and mail templates, authentication backends, and authorization scenarios. Dynamic mailing lists can use multiple backends (LDAP, SQL, files, lists, or others).
Sympa is the only S/MIME enabled mailing list software, and it provides both authentication and encryption.
Download (3.7MB)
Added: 2007-06-14 License: GPL (GNU General Public License) Price:
865 downloads
KriptPass 0.1.0
KriptPass is a simple generator of general purpose user passwords and hexadecimal keys for wireless encryption. more>>
KriptPass is a simple generator of general purpose user passwords and hexadecimal keys for wireless encryption. KriptPass project is actually a GUI for makepasswd, a utility (c)1997-1999 by Rob Levin.
In order to run KriptPass youll need makepasswd and kommander.
<<lessIn order to run KriptPass youll need makepasswd and kommander.
Download (0.007MB)
Added: 2007-05-22 License: GPL (GNU General Public License) Price:
886 downloads
Eureka Encryption SDK Shared Library 1.0
Eureka Encryption SDK Shared Library allows you to use Eureka Encryption in your own applications. more>>
Eureka Encryption SDK Shared Library allows you to use Eureka Encryption in your own applications. Encrypt or decrypt strings or files.
Eureka Encryption shared Library installation instructions:
Start a terminal session and navigate to the folder where the files are located and enter the following commands:
chmod +x eursdk.so (this may be optional)
cp eursdk.so /usr/lib
ldconfig /usr/lib
The library is now ready for use. Load up the sdkhelp.htm file with any web browser for detailed information on its use.
Should anyone wish to translate the help files in other languages and send them to me, I would be happy to include them and repackage the tarball.
<<lessEureka Encryption shared Library installation instructions:
Start a terminal session and navigate to the folder where the files are located and enter the following commands:
chmod +x eursdk.so (this may be optional)
cp eursdk.so /usr/lib
ldconfig /usr/lib
The library is now ready for use. Load up the sdkhelp.htm file with any web browser for detailed information on its use.
Should anyone wish to translate the help files in other languages and send them to me, I would be happy to include them and repackage the tarball.
Download (0.12MB)
Added: 2007-05-10 License: Freeware Price:
898 downloads
Eureka Public Key 1.0.0
Eureka Public Key was created due to numerous requests for a public key application using our strong encryption techniques. more>>
Eureka Public Key was created due to numerous requests for a public key application using our strong encryption techniques. The basic principle for its use is one creates their own public key and distributes the key to whomever they will be transferring encrypted files with.
When one receives a key, they import it into their key database. You can create and import as many keys as you wish. Both public keys are used in the cryption process. You select your particular public key to use and the public key of the person who will receive it.
When a file has been received you put in your public key that matches the one they used and select their public key that was used in the encryption. See the Encryption, Decryption and Import/Export sections for more information on these topics. To create a public key, click on Keys then Create Public Key or click on the gold key icon under the menu items.
All you have to do is define a name for the public key and click on Create. All encrypted files will be written to the Encryptions folder. Likewise, all decrypted files will go to the Decryptions folder. If a file already exists with the same name, it will be overwritten.
Encryption:
To Encrypt a file, click on File then Encrypt.
All you have to do is select Your public key, their public key and click on Encrypt or press enter then select the file you want to process.
The file selected will be encrypted and then placed in your Encryptions folder. Now you can send this file in the manner you prefer.
Note that this application encrypts in a binary format. In other words, it uses the full 256 character set and is not a text file. You will need to send it as an attachment if you are using email to transmit it.
Decryption:
To Decrypt a file, click on File then Decrypt.
All you have to do is select Your public key, their public key then click on Decrypt and select the file you want to process.
The file selected will be decrypted and then placed in your Decryptions folder.
<<lessWhen one receives a key, they import it into their key database. You can create and import as many keys as you wish. Both public keys are used in the cryption process. You select your particular public key to use and the public key of the person who will receive it.
When a file has been received you put in your public key that matches the one they used and select their public key that was used in the encryption. See the Encryption, Decryption and Import/Export sections for more information on these topics. To create a public key, click on Keys then Create Public Key or click on the gold key icon under the menu items.
All you have to do is define a name for the public key and click on Create. All encrypted files will be written to the Encryptions folder. Likewise, all decrypted files will go to the Decryptions folder. If a file already exists with the same name, it will be overwritten.
Encryption:
To Encrypt a file, click on File then Encrypt.
All you have to do is select Your public key, their public key and click on Encrypt or press enter then select the file you want to process.
The file selected will be encrypted and then placed in your Encryptions folder. Now you can send this file in the manner you prefer.
Note that this application encrypts in a binary format. In other words, it uses the full 256 character set and is not a text file. You will need to send it as an attachment if you are using email to transmit it.
Decryption:
To Decrypt a file, click on File then Decrypt.
All you have to do is select Your public key, their public key then click on Decrypt and select the file you want to process.
The file selected will be decrypted and then placed in your Decryptions folder.
Download (2.6MB)
Added: 2007-05-10 License: Freeware Price:
959 downloads
Eureka Encryption Messenger 4 4.0.0
Eureka Messenger 4 software delivers secure and private messaging and unlimited file transfers over the internet. more>>
Eureka Messenger 4 software delivers secure and private messaging and unlimited file transfers over the internet.
This application no longer requires the VB Runtimes, but this new version 4 is not compatible with the previous windows version.
Installation:
Actually there is no install for this application. You can run it right where you unzipped it, or copy the files unzipped wherever you want them.
If there is a firewall on either machine, some configuration may be required in order to make a connection.
The program has a Help file to guide you on how it works, although it is simple enough to run without much assistance.
You probably need to issue a chmod +x messenger before it can run. On some linux systems you may also need to issue a chmod +755 messenger.
<<lessThis application no longer requires the VB Runtimes, but this new version 4 is not compatible with the previous windows version.
Installation:
Actually there is no install for this application. You can run it right where you unzipped it, or copy the files unzipped wherever you want them.
If there is a firewall on either machine, some configuration may be required in order to make a connection.
The program has a Help file to guide you on how it works, although it is simple enough to run without much assistance.
You probably need to issue a chmod +x messenger before it can run. On some linux systems you may also need to issue a chmod +755 messenger.
Download (3.1MB)
Added: 2007-05-10 License: Freeware Price:
900 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above come and go encryption search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed