Main > Free Download Search >

Free sha software for linux

sha

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3657
Digest::SHA::PurePerl 5.45

Digest::SHA::PurePerl 5.45


Digest::SHA::PurePerl is a Perl implementation of SHA-1/224/256/384/512. more>>
Digest::SHA::PurePerl is a Perl implementation of SHA-1/224/256/384/512.

SYNOPSIS

In programs:

# Functional interface

use Digest::SHA::PurePerl qw(sha1 sha1_hex sha1_base64 ...);

$digest = sha1($data);
$digest = sha1_hex($data);
$digest = sha1_base64($data);

$digest = sha256($data);
$digest = sha384_hex($data);
$digest = sha512_base64($data);

# Object-oriented

use Digest::SHA::PurePerl;

$sha = Digest::SHA::PurePerl->new($alg);

$sha->add($data); # feed data into stream

$sha->addfile(*F);
$sha->addfile($filename);

$sha->add_bits($bits);
$sha->add_bits($data, $nbits);

$sha_copy = $sha->clone; # if needed, make copy of
$sha->dump($file); # current digest state,
$sha->load($file); # or save it on disk

$digest = $sha->digest; # compute digest
$digest = $sha->hexdigest;
$digest = $sha->b64digest;

From the command line:

$ shasum files

$ shasum --help

SYNOPSIS (HMAC-SHA)

# Functional interface only

use Digest::SHA::PurePerl qw(hmac_sha1 hmac_sha1_hex ...);

$digest = hmac_sha1($data, $key);
$digest = hmac_sha224_hex($data, $key);
$digest = hmac_sha256_base64($data, $key);

ABSTRACT

Digest::SHA::PurePerl is a complete implementation of the NIST Secure Hash Standard. It gives Perl programmers a convenient way to calculate SHA-1, SHA-224, SHA-256, SHA-384, and SHA-512 message digests. The module can handle all types of input, including partial-byte data.

<<less
Download (0.030MB)
Added: 2007-07-24 License: Perl Artistic License Price:
823 downloads
Digest::SHA1 1.2.11

Digest::SHA1 1.2.11


Digest::SHA1 is a Perl interface to the SHA-1 algorithm. more>>
Digest::SHA1 is a Perl interface to the SHA-1 algorithm.

SYNOPSIS

# Functional style
use Digest::SHA1 qw(sha1 sha1_hex sha1_base64);

$digest = sha1($data);
$digest = sha1_hex($data);
$digest = sha1_base64($data);
$digest = sha1_transform($data);


# OO style
use Digest::SHA1;

$sha1 = Digest::SHA1->new;

$sha1->add($data);
$sha1->addfile(*FILE);

$sha1_copy = $sha1->clone;

$digest = $sha1->digest;
$digest = $sha1->hexdigest;
$digest = $sha1->b64digest;
$digest = $sha1->transform;

The Digest::SHA1 module allows you to use the NIST SHA-1 message digest algorithm from within Perl programs. The algorithm takes as input a message of arbitrary length and produces as output a 160-bit "fingerprint" or "message digest" of the input.

The Digest::SHA1 module provide a procedural interface for simple use, as well as an object oriented interface that can handle messages of arbitrary length and which can read files directly.

<<less
Download (0.038MB)
Added: 2007-07-26 License: Perl Artistic License Price:
821 downloads
Template::Plugin::Digest::SHA1 0.03

Template::Plugin::Digest::SHA1 0.03


Template::Plugin::Digest::SHA1 is a TT2 interface to the SHA1 Algorithm. more>>
Template::Plugin::Digest::SHA1 is a TT2 interface to the SHA1 Algorithm.

SYNOPSIS

[% USE Digest.SHA1 -%]
[% checksum = content FILTER sha1 -%]
[% checksum = content FILTER sha1_hex -%]
[% checksum = content FILTER sha1_base64 -%]
[% checksum = content.sha1 -%]
[% checksum = content.sha1_hex -%]
[% checksum = content.sha1_base64 -%]

The Digest.SHA1 Template Toolkit plugin provides access to the NIST SHA-1 algorithm via the Digest::SHA1 module. It is used like a plugin but installs filters and vmethods into the current context.

<<less
Download (0.004MB)
Added: 2007-04-04 License: Perl Artistic License Price:
933 downloads
Classless.Hasher 0.7

Classless.Hasher 0.7


Hasher is a tool to help programmers implement standard hashing and checksum algorithms into their own software. more>>
Hasher is a tool to help programmers implement checksum algorithms and standard hashing into their own software.
Written entirely in C# and designed for use in the .NET Framework, Hasher providers a uniform interface to easily use any of the algorithms contained within this library in other programs.
Hasher is planned to encapsulate a wide variety of cryptographic hashing and checksum algorithms.
Focusing on compatibility, speed, and ease-of-use, Classless.Hasher currently supports over 25 different algorithms including the "basics" such as CRC, MD5, and SHA, as well as others like HAVAL, Tiger, Snefru, and Whirlpool.
Enhancements:
- Hasher rises from the dead!
- Fixed CRCStandards for CRC8 and CRC32.
- Fixed CRC handling when the Order was 64bits.
- Removed the REVERSED CRCStandards.
- Added CRCStandards for CRC64_ISO and CRC64_ECMA.
- Changed CRCStandard CRC16 to CRC16_IBM.
- Renamed CRC16_CCITT_REVERSED to CRC16_XMODEM.
- Fixed nasty bug that broke MD4, MD5, the RIPEMDs, Tiger, and the SHAs when large datasets were processed.
- Added support for creating Panama hashes.
- Fixed the NAnt build script to better support Mono and .NET v2.0.
<<less
Download (0.63MB)
Added: 2006-02-27 License: MPL (Mozilla Public License) Price:
1335 downloads
ghasher 1.2.1

ghasher 1.2.1


ghasher can easily show the MD5 sum(or md2,md4,sha1,sha,ripemd160,dss1) of a file. more>>
ghasher can easily show the MD5 sum(or md2,md4,sha1,sha,ripemd160,dss1) of a file.

Motivation for this utility was that users shouldnt need to open a command line for checking the MD5 sum of files they download.

Its written using GTK2 and OpenSSL.

<<less
Download (0.011MB)
Added: 2005-11-22 License: GPL (GNU General Public License) Price:
1437 downloads
ObexPushD 0.5

ObexPushD 0.5


ObexPushD is a software used to receive files via Bluetooth, IrDA and TCP. more>>
ObexPushD is a software used to receive files via Bluetooth, IrDA and TCP. This program should work with many mobile devices like PDAs and mobile phones.

<<less
Download (0.032MB)
Added: 2007-08-15 License: GPL (GNU General Public License) Price:
808 downloads
jcrossclient 1.0 Alpha4

jcrossclient 1.0 Alpha4


jcrossclient is a client for the RPG/MMORPG Crossfire, written entirely in java. more>>
jcrossclient is a client for the RPG/MMORPG Crossfire, written entirely in java.

Please note that this is an alpha release, and therefore should not be considered suitable for use as a main client (yet). Whilst most major bugs should now be fixed, there is no guarentee that this is the case.

<<less
Download (0.13MB)
Added: 2006-04-20 License: GPL (GNU General Public License) Price:
1285 downloads
strongSwan 2.8.3

strongSwan 2.8.3


strongSwan is an OpenSource IPsec implementation for the Linux operating system. more>>
strongSwan is an OpenSource IPsec implementation for the Linux operating system. strongSwan is based on the discontinued FreeS/WAN project and the X.509 patch which we developped over the last three years.
In order to have a stable IPsec platform to base our future extensions of the X.509 capability on, we decided to lauch the strongSwan project.
Main features:
- runs both on Linux 2.4 (KLIPS) and Linux 2.6 (native IPsec) kernels
- strong 3DES, AES, Serpent, Twofish, or Blowfish encryption
- Authentication based on X.509 certificates or preshared keys
- Powerful IPsec policies based on wildcards or intermediate CAs
- Retrieval and local caching of Certificate Revocation Lists via HTTP or LDAP
- Full support of the Online Certificate Status Protocol (OCSP, RCF 2560).
- Optional storage of RSA private keys on smartcards or USB crypto tokens
- Smartcard access via standardized PKCS #11 interface
- PKCS #11 proxy function offering RSA decryption services via whack
- NAT-Traversal (RFC 3947) and support of Virtual IPs and IKE Mode Config
- CA management (OCSP and CRL URIs, default LDAP server)
- Dead Peer Detection (DPD, RFC 3706)
- Group policies based on X.509 attribute certificates ( RFC 3281)
- Generation of default self-signed certificates during strongSwan setup
Whats New in 2.8.0 Stable Release:
- The implementation of the IKE Mode Config push mode allows interoperability with Cisco VPN gateways.
- By setting "modeconfig=push", strongSwan will wait for the peer to push down a virtual IP address that can be used within an IPsec tunnel.
- The default value of the new keyword is "modeconfig=pull".
- The command "ipsec statusall" now shows "DPD active" for all ISAKMP Security Associations that are under active Dead Peer Detection control.
Whats New in 4.0.7 Development Release:
- Extended authentication (XAUTH) in conjunction with IKE Main Mode authentication (RSA and PSK) is now possible with most VPN clients and gateways (e.g. Cisco, NCP, Shrew, etc.).
Whats New in 2.8.3 Stable Release:
- A bug in the computation of the SHA-512-HMAC function was fixed.
- The SHA-384 hash and HMAC functions were implemented.
- SHA-2 signatures are now supported in X.509 certificates.
- Automatic test vector-based self-tests of all hash functions (MD5, SHA-1, SHA-2) during pluto startup was introduced to increase the reliability of the software.
<<less
Download (2.3MB)
Added: 2007-02-23 License: GPL (GNU General Public License) Price:
973 downloads
GChemPaint 0.8.2

GChemPaint 0.8.2


GChemPaint is a 2D chemical structures editor for the Gnome desktop. more>>
GChemPaint is a 2D chemical structures editor for the Gnome desktop.

GChemPaint should enable embedding some chemistry in files from other programs using Bonobo.

<<less
Download (1.5MB)
Added: 2007-07-28 License: GPL (GNU General Public License) Price:
822 downloads
sftpup 5

sftpup 5


sftpup is used for uploading files to ftp servers and keep them consistent to a local directory. more>>
sftpup is used for uploading files to ftp servers and keep them consistent to a local directory.

To use sftpup go follow these steps:

1. Create a directory for your work, e.g. www where all files will be stored. For example, if you create your websites via XML and XSLT, make www the target for each generated file.
2. Upload all files to the ftp server. Your server directory and www are now in a consistent state. sftpup saves the state of www by calculating SHA hashes for each file. To initialize, execute:

sftpup --init your-config-file

The hashes are stored in the file given by hashfile in your-configfile.
3. If you change a file or directory (modified, deleted, added etc.) and want to do an update the ftp server, type:

sftpup --update your-config-file

sftpup compares HTML files with stored hashes and lists differences.This list is then used to make send appropriate commands to the ftp server.
4. To test what actions would be done, you can do a socalled dry-run by typing:

sftpup --dry-run your-config-file

sftpup then prints a list of commands and files/directories.

<<less
Download (0.015MB)
Added: 2006-06-13 License: GPL (GNU General Public License) Price:
1228 downloads
Joystick

Joystick


Joystick is a utility to read commands from joystick and send to BMPx via DBUS. more>>
Joystick is a utility to read commands from joystick and send to BMPx via DBUS. Commands are configured via .ini file. Should be easy to work with other DBUS-consumers.
<<less
Download (0.028MB)
Added: 2006-08-15 License: GPL (GNU General Public License) Price:
1168 downloads
XySSL 0.7

XySSL 0.7


XySSL is a cryptographic library written in C. more>>
XySSL is a cryptographic library written in C. It currently features several ciphers (AES, Triple-DES, and ARC4), hash functions (MD{2,4,5}, SHA-1, and SHA-256), and RSA and X.509 reading support.
XySSL project also implements the Secure Sockets Layer version 3 protocol (SSLv3), as well as the Transport Layer Security version 1 protocol.
Main features:
- AES, Triple-DES, DES, ARC4
- MD2, MD4, MD5, SHA-1, SHA-256
- HAVEGE random number generator
- RSA with PKCS#1 v1.5 padding
- SSLv3 and TLSv1 client support
- X.509 certificate reading
Enhancements:
- This releases fixes several bugs and adds nine demonstration programs.
<<less
Download (0.27MB)
Added: 2007-07-08 License: LGPL (GNU Lesser General Public License) Price:
845 downloads
Leptons Crack 20040914

Leptons Crack 20040914


Leptons Crack is a generic password cracker, easily customizable with a simple plug-in system. more>>
Leptons Crack is a generic password cracker, easily customizable with a simple plug-in system. COPYRIGHT=1]
For the incremental scan, the user can provide a regex-like expression
that will be enumerated, thus checking every possible combination. This
powerful feature effectively combines `shoulder-surfing with standard
brute-forcing.
http://usuarios.lycos.es/reinob/lcrack/lcrack-20040914.tar.gz
By default it comes with the following modules:
md4 : standard MD4 hash
md5 : standard MD5 hash
nt4 : NT MD4/Unicode
dom : Lotus Domino HTTP password
sha1 : standard SHA-1 hash
null : trivial 1-byte hash
(sample for plug-in developers
Enhancements:
- Added support for any ASCII character (ie. also non-printable) in the charset and regex definition, via (octal), x(hex), (decimal)
<<less
Download (0.038MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1233 downloads
SquTUN 1.1

SquTUN 1.1


SquTUN creates an AES-encrypted, SHA-1 authenticated UDP tunnel more>>
SquTUN creates an AES-encrypted, SHA-1 authenticated UDP tunnel over which IP packets received from a TUN interface are encapsulated and transmitted.
It is intended to replace installations that are currently using CIPE for point-to-point VPNs. Unlike CIPE, SquTUN doesnt require a custom kernel module.
Furthermore, SquTUNs implementation and interface are much less complex, leading to greater confidence in its correctness.
Enhancements:
- This release zeroes out the remainder of the last plaintext block before sending, to avoid sending uninitialized (and possibly private) data.
- It also fixes type mismatch warnings with syslog/printf under -Wall.
<<less
Download (0.018MB)
Added: 2006-03-20 License: GPL (GNU General Public License) Price:
1313 downloads
Naja 1.2.7

Naja 1.2.7


Naja is a download manager, a website grabber, a news grabber, ftp, ftps, sftp, webdav client. more>>
Naja is a download manager (accelerated downloading), and a website grabber. You can add some plugins (newsreader, newsgroup grabber, FTP - FTPS - SFTP client, WebDAV client) and take control of your downloads from your office.
You may automatically resume broken downloads if your connection is interrupted for any reason and you may always resume downloading from the point were you stopped.
The downloading maybe achieved by splitting the file being downloaded into several parts and downloading these parts at the same time (HTTP, HTTPS & FTP). Donwload speeds are increased by downloading the file from the mirror sites, when the sites propose it.
Support for decoding multipart encoded image on several news is now ready (UUE, yEnc). Proxies are also supported (HTTP, HTTPS, FTP, SOCKS v4a, SOCKS v5), and use some authentication methods.
Others features are signatures (MD5, SHA1, CRC32), CSV filter, CGI & WebDAV Server, Web Admin Interface (take control from your office), Basic & Digest authentication for client and server, Compress and decompress (zip, tar.gz, tar.bz2), Picture viewer, Text Editor.
Naja is ad-sponsored software, and does not contain spy-ware. You may use it for free. No registration is required.
Naja exists under Linux & MacOS X.
Main features:
- Csv filter
- Cheksums (CRC32, MD2, MD4, MD5, SHA, SHA1, MDC2, RMD160)
- Crypt (Only for the eXtended version) and Decrypt (AES, DES, 3DES ...)
- CGI & WebDAV Server
- Web Interface
- Compress and decompress (zip, tar.gz, tar.bz2)
- Picture viewer
- Text Editor
<<less
Download (1.0MB)
Added: 2005-11-21 License: Freeware Price:
1433 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5