All Projects → blooddy → Blooddy_crypto

blooddy / Blooddy_crypto

Licence: mit
ActionScript (AS3) library for processing binary data. This library contains MD5, SHA-1, SHA-2 ( SHA-224 и SHA-256 ), Base64, CRC32 algorithms, JSON encoder & decoder as well as PNG and JPEG encoders.

Programming Languages

actionscript
884 projects

Projects that are alternatives of or similar to Blooddy crypto

Gensum
Powerful checksum generator!
Stars: ✭ 12 (-85.54%)
Mutual labels:  md5, sha1, sha256
Hash Buster
Crack hashes in seconds.
Stars: ✭ 981 (+1081.93%)
Mutual labels:  md5, sha1, sha256
Hashrat
Hashing tool supporting md5,sha1,sha256,sha512,whirlpool,jh and hmac versions of these. Includes recursive file hashing and other features.
Stars: ✭ 46 (-44.58%)
Mutual labels:  md5, sha1, sha256
BruteForce
A simple brute forcer written in GO for SHA1, SHA256, SHA512, MD5 and bcrypt
Stars: ✭ 49 (-40.96%)
Mutual labels:  md5, sha1, sha256
Automator Workflows
A collection of Automator workflows (services) that speed up your design / development process. Compatible with LaunchBar 6 and 7 Actions
Stars: ✭ 439 (+428.92%)
Mutual labels:  base64, png, jpeg
fhash
fHash - an open source files hash calculator for Windows and macOS
Stars: ✭ 222 (+167.47%)
Mutual labels:  md5, sha1, sha256
hediye
Hash Generator & Cracker
Stars: ✭ 40 (-51.81%)
Mutual labels:  md5, sha1, sha256
Gtkhash
A cross-platform desktop utility for computing message digests or checksums
Stars: ✭ 167 (+101.2%)
Mutual labels:  md5, sha1, sha256
Crypto Es
A cryptography algorithms library
Stars: ✭ 65 (-21.69%)
Mutual labels:  md5, sha1, sha256
Forge
A native implementation of TLS in Javascript and tools to write crypto-based and network-heavy webapps
Stars: ✭ 4,204 (+4965.06%)
Mutual labels:  md5, sha1, sha256
crypto.js
base on crypto module
Stars: ✭ 13 (-84.34%)
Mutual labels:  md5, sha1, sha256
Digestif
Simple hash algorithms in OCaml
Stars: ✭ 69 (-16.87%)
Mutual labels:  md5, sha1, sha256
Wjcryptlib
Public Domain C Library of Cryptographic functions. Including: MD5, SHA1, SHA256, SHA512, RC4, AES, AES-CTR, AES-OFB, AES-CBC
Stars: ✭ 250 (+201.2%)
Mutual labels:  md5, sha1, sha256
hash-checker
Fast and simple application that allows you to generate and compare hashes from files and text
Stars: ✭ 72 (-13.25%)
Mutual labels:  md5, sha1, sha256
Rufus
The Reliable USB Formatting Utility
Stars: ✭ 16,917 (+20281.93%)
Mutual labels:  md5, sha1, sha256
hash-wasm
Lightning fast hash functions using hand-tuned WebAssembly binaries
Stars: ✭ 382 (+360.24%)
Mutual labels:  md5, sha1, sha256
Hash Library
Portable C++ hashing library
Stars: ✭ 109 (+31.33%)
Mutual labels:  md5, sha1, sha256
Merkle
Node.js module implementing Merkle tree algorithm
Stars: ✭ 123 (+48.19%)
Mutual labels:  md5, sha1, sha256
Checksum
Checksum calculation extensions for Swift
Stars: ✭ 28 (-66.27%)
Mutual labels:  md5, sha1, sha256
Openhashtab
📝 File hashing and checking shell extension
Stars: ✭ 599 (+621.69%)
Mutual labels:  md5, sha1, sha256

BLODDY_CRYPTO

Wiki Download Last Release Licence

ActionScript (AS3) library for processing binary data.

Description

This library contains MD5, SHA-1, SHA-2 ( 224 и 256 ), Base64, CRC32 algorithms, JSON encoder & decoder as well as PNG and JPEG encoders.

Examples

Sync
import by.blooddy.crypto.MD5;
var result:String = MD5.hash( 'text' );
Async
import by.blooddy.crypto.MD5;
import by.blooddy.crypto.events.ProcessEvent;

var md5:MD5 = new MD5();
md5.hash( 'text' );
md5.addEventListener( ProcessEvent.COMPLETE, function(event:ProcessEvent):void {
	var result:String = event.data;
	trace( result ); // async result
} );
md5.addEventListener( ProcessEvent.ERROR, function(event:ProcessEvent):void {
	var error:Error = event.data;
	trace( error ); // async error
} );
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].