Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.280.642 Times

Crypto Crypt Puzzles freeware
Filter: All | Freeware | Demo
 

Crypto Crypt Puzzles

1 2 3 4 5 > 
Added: January 26, 2010 | Visits: 818

Crypt::Util Crypt::Util is a lightweight Crypt/Digest convenience API. SYNOPSIS use Crypto::Util; # also has a Sub::Exporter to return functions wrapping a default instance my $util = Crypto::Util->new; $util->default_key("my secret"); # MAC or cipher+digest based tamper resistent encapsulation #...



Platforms: *nix

License: Freeware Size: 36.86 KB Download (97): Crypt::Util Download

Added: May 02, 2006 | Visits: 4.337

TooHot Crossword Puzzles Compiler The TooHot Crossword Puzzles Compiler generates Crossword Puzzles fully automatically using clue-databases. It generates Swedish Puzzles where, the clues are in squares. These crossword puzzles are very popular in European Countries. It can be used as crossword dictionary as well. Wildcards ? and...





Platforms: BeOS, OS/2, Windows, Mac, *nix

License: Freeware Size: 2.01 MB Download (503): TooHot Crossword Puzzles Compiler Download

Added: March 27, 2006 | Visits: 12.546

BitShape PE Crypt BitShape PE Crypt is a powerful polymorphic Win32 applications protector. Features includes SoftIce autodetection, anti-debug API, anti-dumping and some other advanced technologies.


Platforms: Windows

License: Freeware Size: 266 KB Download (2295): BitShape PE Crypt Download

Added: November 10, 2010 | Visits: 1.331

Module::Crypt Module::Crypt is a Perl module to encrypt your Perl code and compile it into XS. SYNOPSIS use Module::Crypt; #Êfor a single file: CryptModule( file => Bar.pm, install_base => /path/to/my/lib ); # for multiple files: CryptModule( files => [Foo.pm, Bar.pm], install_base =>...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (97): Module::Crypt Download

Added: April 27, 2010 | Visits: 1.821

Crypt::OpenPGP Crypt::OpenPGP is a Pure-Perl OpenPGP implementation. SYNOPSIS my $pgp = Crypt::OpenPGP->new; my $result = $pgp->handle( Data => $message_body ); my $signature = $pgp->sign( Filename => $file, KeyID => $key_id, Passphrase => $pass, Detach => 1, Armour => 1, ); my $valid =...


Platforms: *nix

License: Freeware Size: 97.28 KB Download (121): Crypt::OpenPGP Download

Added: February 19, 2010 | Visits: 1.270

Crypt::OpenPGP::Plaintext Crypt::OpenPGP::Plaintext is a plaintext, literal-data packet. SYNOPSIS use Crypt::OpenPGP::Plaintext; my $pt = Crypt::OpenPGP::Plaintext->new( Data => $data, Filename => $file, ); my $serialized = $pt->save; my $pt = Crypt::OpenPGP::Plaintext->parse($buffer);...


Platforms: *nix

License: Freeware Size: 97.28 KB Download (126): Crypt::OpenPGP::Plaintext Download

Added: January 01, 2010 | Visits: 1.239

Crypt::DH Crypt::DH is a Diffie-Hellman key exchange system. SYNOPSIS use Crypt::DH; my $dh = Crypt::DH->new; $dh->g($g); $dh->p($p); ## Generate public and private keys. $dh->generate_keys; $my_pub_key = $dh->pub_key; ## Send $my_pub_key to "other" party, and receive "other" ## public key...


Platforms: *nix

License: Freeware Size: 18.43 KB Download (94): Crypt::DH Download

Added: April 20, 2010 | Visits: 1.070

Crypt::UnixCrypt_XS Crypt::UnixCrypt_XS is a perl xs interface for a portable traditional crypt function. SYNOPSIS use Crypt::UnixCrypt_XS qw/crypt/; my $hashed = crypt( $password, $salt ); use Crypt::UnixCrypt_XS qw/crypt_rounds fold_password base64_to_block block_to_base64 base64_to_int24 int24_to_base64...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (120): Crypt::UnixCrypt_XS Download

Added: October 14, 2010 | Visits: 1.100

Crypt::Enigma Crypt::Enigma is a Perl extension for emulating a World War II Enigma. SYNOPSIS use Crypt::Enigma; my($enigma) = Crypt::Enigma->new(); # Set the enigma to the proper rotor, ring, and initial setting. $enigma->setup("312", "ABC", "ERZ"); # Plugboard a to b, and b to a....


Platforms: *nix

License: Freeware Size: 6.14 KB Download (151): Crypt::Enigma Download

Added: March 20, 2010 | Visits: 1.072

Crypt::SSLeay Crypt::SSLeay is a Perl module for OpenSSL glue that provides LWP https support. SYNOPSIS lwp-request https://www.nodeworks.com use LWP::UserAgent; my $ua = new LWP::UserAgent; my $req = new HTTP::Request(GET, https://www.nodeworks.com); my $res = $ua->request($req); print...


Platforms: *nix

License: Freeware Download (106): Crypt::SSLeay Download

Added: November 05, 2010 | Visits: 1.128

Crypt::UnixCrypt Crypt::UnixCrypt is a perl-only implementation of the crypt function. SYNOPSIS use Crypt::UnixCrypt; $hashed = crypt($plaintext,$salt); # always use this modules crypt BEGIN { $Crypt::UnixCrpyt::OVERRIDE_BUILTIN = 1 } use Crypt::UnixCrypt; This module is for all those poor souls whose...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (96): Crypt::UnixCrypt Download

Added: August 05, 2010 | Visits: 1.574

Crypt::ECDSA::Curve Crypt::ECDSA::Curve is a base class for ECC curves. These are for use with Crypt::ECDSA, a Math::GMPz based cryptography module. METHODS new Constructor. Takes the following named pair arguments: standard => standard-curve-name Used for named standard curves such as the NIST standard...


Platforms: *nix

License: Freeware Size: 143.36 KB Download (193): Crypt::ECDSA::Curve Download

Added: November 06, 2010 | Visits: 1.735

Crypt::OpenSSL::SMIME Crypt::OpenSSL::SMIME is a Perl module for signing and encrypting messages with S/MIME standard using OpenSSL libraries. SYNOPSIS use Crypt::OpenSSL::SMIME; $smime = new Crypt::OpenSSL::SMIME({ signer_from => sender@test.com, signer_cert => sender.crt, signer_key => sender.key,...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (107): Crypt::OpenSSL::SMIME Download

Released: September 22, 2012  |  Added: September 22, 2012 | Visits: 767

Amigos Number Puzzles for Mac OS Create an unlimited number of Sudoku, Kakuro, Futoshiki and Hexagon puzzles with Amigos Number Puzzles compendium software. Choose from 3 difficulty levels and various grid sizes. Print the puzzles or solve on screen by typing numbers or pencilmarks, or just by using your mouse. Various levels of...


Platforms: Mac

License: Freeware Size: 4 MB Download (463): Amigos Number Puzzles for Mac OS Download

Released: July 05, 2012  |  Added: July 05, 2012 | Visits: 634

Puzzles Forever for Mac OS Jigsaw puzzles brought to life in 3D. - Beautiful, simple graphic interface - Create puzzles with up to 900 pieces - Enjoy six free puzzles - Import your own pictures to use as puzzles - Several puzzle piece shape types - Multiple zoom levels - Full screen mode


Platforms: Mac

License: Freeware Size: 2.4 MB Download (459): Puzzles Forever for Mac OS Download

Released: October 05, 2012  |  Added: October 05, 2012 | Visits: 856

French Word Puzzles for Mac OS Learn French vocabulary using games and puzzles. French Word Puzzles includes over 2500 French words and expressions, divided into 75 categories and sub-categories for easy learning. Create unlimited fill in tests, crossword puzzles, word search puzzles and word games from these words, or play a...


Platforms: Mac

License: Freeware Size: 4.2 MB Download (470): French Word Puzzles for Mac OS Download

Released: September 01, 2012  |  Added: September 01, 2012 | Visits: 846

Amigos Spanish Puzzles for Mac OS Learn Spanish vocabulary using various word games and puzzles. Fun and easy to use. Words are grouped into categories for easy learning. Amigos Spanish Puzzles also provides a great variety of games and puzzles for a less formal learning environment. Choose from crossword puzzles, word search...


Platforms: Mac

License: Freeware Size: 4.2 MB Download (481): Amigos Spanish Puzzles for Mac OS Download

Released: July 01, 2012  |  Added: July 01, 2012 | Visits: 614

MAXA Crypt Portable The MAXA Crypt Mobile application was designed to help you encrypt files, folders and texts using the 256-bit Rijndael algorithm, winner of the Advanced Encryption Standard contest. Multiple files can be encrypted into one file and are even compressed in their size. The program is smaller than...


Platforms: Windows

License: Freeware Download (424): MAXA Crypt Portable Download

Released: November 24, 2012  |  Added: November 24, 2012 | Visits: 573

Sudoku Puzzles A cool application which lets you play unlimited number of Sudoku puzzles right on your computer. You simply need to press generate to generate a new Sudoku. You can also set the difficulty level.


Platforms: Windows

License: Freeware Size: 317 KB Download (56): Sudoku Puzzles Download

Released: July 09, 2012  |  Added: July 09, 2012 | Visits: 797

Jigsaw Puzzles A cool application which lets you play unlimited number of Jigsaw puzzles right on your computer. You can make Jigsaw puzzle from any of your picture.


Platforms: Windows

License: Freeware Size: 317 KB Download (84): Jigsaw Puzzles Download

1 2 3 4 5 >