All Projects → kodie → Md5 File

kodie / Md5 File

Licence: other
return an md5sum of a given file

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Md5 File

fingerprint
Fingerprint is a simple tool that can be used to verify the contents of a directory.
Stars: ✭ 71 (-59.66%)
Mutual labels:  checksum, verification
Software Quality Wiki
Software Quality Wiki
Stars: ✭ 1,991 (+1031.25%)
Mutual labels:  verification
Sha3sum
[Feature complete] SHA-3 and Keccak checksum utility
Stars: ✭ 136 (-22.73%)
Mutual labels:  checksum
Vscode Tlaplus
TLA+ language support for Visual Studio Code
Stars: ✭ 152 (-13.64%)
Mutual labels:  verification
Cpachecker
CPAchecker, the Configurable Software-Verification Platform (read-only mirror)
Stars: ✭ 138 (-21.59%)
Mutual labels:  verification
Flutter pinput
🔥🚀 Flutter package to create Pin code input text field with every pixel customization possibility 🎨 with beautiful animations
Stars: ✭ 157 (-10.8%)
Mutual labels:  verification
Sbv
SMT Based Verification in Haskell. Express properties about Haskell programs and automatically prove them using SMT solvers.
Stars: ✭ 125 (-28.98%)
Mutual labels:  verification
Antiddos System
🛡️⚔️ Protect your web app from DDOS attack or the Dead Ping + CAPTCHA VERIFICATION in one line!
Stars: ✭ 173 (-1.7%)
Mutual labels:  verification
Lean
Homepage Theorem Proving in Lean FAQ
Stars: ✭ 2,006 (+1039.77%)
Mutual labels:  verification
Express Mongodb Rest Api Boilerplate
A boilerplate for Node.js apps / Rest API / Authentication from scratch - express, mongodb (mongoose).
Stars: ✭ 153 (-13.07%)
Mutual labels:  verification
Immudb
immudb - world’s fastest immutable database, built on a zero trust model
Stars: ✭ 3,743 (+2026.7%)
Mutual labels:  verification
Osvvm
OSVVM Utility Library: AlertLogPkg, CoveragePkg, RandomPkg, ScoreboardGenericPkg, MemoryPkg, TbUtilPkg, TranscriptPkg, ...
Stars: ✭ 140 (-20.45%)
Mutual labels:  verification
Sv Benchmarks
Collection of Verification Tasks
Stars: ✭ 158 (-10.23%)
Mutual labels:  verification
Cogent
Cogent Project
Stars: ✭ 137 (-22.16%)
Mutual labels:  verification
Gtkhash
A cross-platform desktop utility for computing message digests or checksums
Stars: ✭ 167 (-5.11%)
Mutual labels:  checksum
Hashlib4pascal
Hashing for Modern Object Pascal
Stars: ✭ 132 (-25%)
Mutual labels:  checksum
Hyperkernel
Stars: ✭ 152 (-13.64%)
Mutual labels:  verification
Coqhammer
CoqHammer: An Automated Reasoning Hammer Tool for Coq - Proof Automation for Dependent Type Theory
Stars: ✭ 157 (-10.8%)
Mutual labels:  verification
Laravel2step
Laravel 2-Step verification is a package to add 2-Step user authentication to any Laravel project easily. It is configurable and customizable. It uses notifications to send the user an email with a 4-digit verification code. Laravel 2-Step Authentication Verification for Laravel. Can be used in out the box with Laravel's authentication scaffolding or integrated into other projects.
Stars: ✭ 175 (-0.57%)
Mutual labels:  verification
Fstar
A Proof-oriented Programming Language
Stars: ✭ 2,171 (+1133.52%)
Mutual labels:  verification

MD5 file

Get the MD5-sum of a given file, with low memory usage, even on huge files.

Installation

npm install --save md5-file

Usage

As a module

const md5File = require('md5-file')

/* Async usage */
md5File('LICENSE.md').then((hash) => {
  console.log(`The MD5 sum of LICENSE.md is: ${hash}`)
})

/* Sync usage */
const hash = md5File.sync('LICENSE.md')
console.log(`The MD5 sum of LICENSE.md is: ${hash}`)

As a command line tool

$ md5-file LICENSE.md
ad1faf9381e43c471dc381c17a4ee4b6

API

md5File(path: string) => Promise<string>

Asynchronously get the MD5-sum of the file at path.

Returns a Promise that will be resolved with a string containing the MD5-sum.

md5File.sync(path: string) => string

Synchronously get the MD5-sum of the file at path.

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