All Projects → crypto-browserify → md5.js

crypto-browserify / md5.js

Licence: MIT license
node style md5 on pure JavaScript

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to md5.js

Compute-file-or-string-md5
Compute md5 value of file or string.
Stars: ✭ 111 (+177.5%)
Mutual labels:  md5
SpinalCrypto
SpinalHDL - Cryptography libraries
Stars: ✭ 36 (-10%)
Mutual labels:  md5
hmac.nim
HMAC-SHA1 and HMAC-MD5 hashing in Nim
Stars: ✭ 13 (-67.5%)
Mutual labels:  md5
ioc-scanner
Search a filesystem for indicators of compromise (IoC).
Stars: ✭ 31 (-22.5%)
Mutual labels:  md5
angular-crypto
angular-crypto provides standard and secure cryptographic algorithms for Angular.js with support for: MD5, SHA-1, SHA-256, RC4, Rabbit, AES, DES, PBKDF2, HMAC, OFB, CFB, CTR, CBC, Base64
Stars: ✭ 30 (-25%)
Mutual labels:  md5
java-sdk
一些常用的java sdk和工具类(日期工具类,分布式锁,redis缓存,二叉树,反射工具类,线程池,对称/非对称/分段加解密,json序列化,http工具,雪花算法,字符串相似度,集合操作工具,xml解析,重试Retry工具类,Jvm监控等)
Stars: ✭ 26 (-35%)
Mutual labels:  md5
crypto.js
base on crypto module
Stars: ✭ 13 (-67.5%)
Mutual labels:  md5
hediye
Hash Generator & Cracker
Stars: ✭ 40 (+0%)
Mutual labels:  md5
MD5-Hash-Changer
C# Application to Change MD5 Hash of any file
Stars: ✭ 111 (+177.5%)
Mutual labels:  md5
md5-optimisation
The fastest MD5 implementation using x86 assembly
Stars: ✭ 45 (+12.5%)
Mutual labels:  md5
wxMD5
📄基于 blueimp/JavaScript-MD5 的支持小程序的MD5加密库
Stars: ✭ 44 (+10%)
Mutual labels:  md5
fhash
fHash - an open source files hash calculator for Windows and macOS
Stars: ✭ 222 (+455%)
Mutual labels:  md5
md5-webworker
Compute MD5 of files in the background using web workers!
Stars: ✭ 20 (-50%)
Mutual labels:  md5
Computer-Security-algorithms
👨‍💻 Computer Security algorithms in C#
Stars: ✭ 48 (+20%)
Mutual labels:  md5
hash-wasm
Lightning fast hash functions using hand-tuned WebAssembly binaries
Stars: ✭ 382 (+855%)
Mutual labels:  md5
BruteForce
A simple brute forcer written in GO for SHA1, SHA256, SHA512, MD5 and bcrypt
Stars: ✭ 49 (+22.5%)
Mutual labels:  md5
hash-checker
Fast and simple application that allows you to generate and compare hashes from files and text
Stars: ✭ 72 (+80%)
Mutual labels:  md5
common-secure
提供一些加密算法java代码封装 包括 RSA/AES/DES/3DES/MD5/SHA/HmacSHA256
Stars: ✭ 37 (-7.5%)
Mutual labels:  md5
EasyEncryption
No description or website provided.
Stars: ✭ 16 (-60%)
Mutual labels:  md5
Hashrat
Hashing tool supporting md5,sha1,sha256,sha512,whirlpool,jh and hmac versions of these. Includes recursive file hashing and other features.
Stars: ✭ 46 (+15%)
Mutual labels:  md5

md5.js

NPM Package Build Status Dependency status

js-standard-style

Node style md5 on pure JavaScript.

From NIST SP 800-131A: md5 is no longer acceptable where collision resistance is required such as digital signatures.

Example

var MD5 = require('md5.js')

console.log(new MD5().update('42').digest('hex'))
// => a1d0c6e83f027327d8461063f4ac58a6

var md5stream = new MD5()
md5stream.end('42')
console.log(md5stream.read().toString('hex'))
// => a1d0c6e83f027327d8461063f4ac58a6

LICENSE MIT

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].