All Projects → indutny → Proof Of Work

indutny / Proof Of Work

Proof of Work with SHA256 and Bloom filter

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Proof Of Work

algorithm coding
推荐算法、相似度算法、布隆过滤器、均值算法、一致性Hash、数据结构、leetcode练习
Stars: ✭ 30 (-69.07%)
Mutual labels:  bloom-filter
Cfilter
Cuckoo Filter implementation in Go, better than Bloom Filters (unmaintained)
Stars: ✭ 772 (+695.88%)
Mutual labels:  bloom-filter
Bloom
C++ Bloom Filter Library
Stars: ✭ 77 (-20.62%)
Mutual labels:  bloom-filter
Redis Lua Scaling Bloom Filter
LUA Redis scripts for a scaling bloom filter
Stars: ✭ 268 (+176.29%)
Mutual labels:  bloom-filter
Wyhash
The FASTEST QUALITY hash function, random number generators (PRNG) and hash map.
Stars: ✭ 410 (+322.68%)
Mutual labels:  bloom-filter
Redisbloom
Probabilistic Datatypes Module for Redis
Stars: ✭ 858 (+784.54%)
Mutual labels:  bloom-filter
bloomfilter
Bloomfilter written in Golang, includes rotation and RPC
Stars: ✭ 61 (-37.11%)
Mutual labels:  bloom-filter
Boomfilters
Probabilistic data structures for processing continuous, unbounded streams.
Stars: ✭ 1,333 (+1274.23%)
Mutual labels:  bloom-filter
Khmer
In-memory nucleotide sequence k-mer counting, filtering, graph traversal and more
Stars: ✭ 640 (+559.79%)
Mutual labels:  bloom-filter
App comments spider
爬取百度贴吧、TapTap、appstore、微博官方博主上的游戏评论(基于redis_scrapy),过滤器采用了bloomfilter。
Stars: ✭ 38 (-60.82%)
Mutual labels:  bloom-filter
Hash Table
Fast, reliable cuckoo hash table for Node.js.
Stars: ✭ 272 (+180.41%)
Mutual labels:  bloom-filter
Bloom Filter Scala
Bloom filter for Scala, the fastest for JVM
Stars: ✭ 333 (+243.3%)
Mutual labels:  bloom-filter
Gopie
go patterns
Stars: ✭ 28 (-71.13%)
Mutual labels:  bloom-filter
algorithm-structure
2021年最新总结 500个常用数据结构,算法,算法导论,面试常用,大厂高级工程师整理总结
Stars: ✭ 590 (+508.25%)
Mutual labels:  bloom-filter
Bloomex
🌺 A pure Elixir implementation of Scalable Bloom Filters
Stars: ✭ 93 (-4.12%)
Mutual labels:  bloom-filter
fastbloom
A simple but fast bloomfilter written in Python
Stars: ✭ 21 (-78.35%)
Mutual labels:  bloom-filter
Doramon
常见工具汇总:一键式生成整个前后端工具,单机高性能幂等工具,zookeeper客户端工具,分布式全局id生成器,一致性哈希工具,Bitmap工具,布隆过滤器参数生成器,Yaml和properties互转工具等等
Stars: ✭ 24 (-75.26%)
Mutual labels:  bloom-filter
Sketch
C++ Implementations of sketch data structures with SIMD Parallelism, including Python bindings
Stars: ✭ 96 (-1.03%)
Mutual labels:  bloom-filter
Algorithms Study Group
Study group for algorithms in Ruby, hosted at App Academy
Stars: ✭ 94 (-3.09%)
Mutual labels:  bloom-filter
Springmvc Project
开箱即用的SpringMVC项目,包含常规业务所需的框架功能整合,更多功能请关注 https://github.com/MartinDai/SpringBoot-Project
Stars: ✭ 33 (-65.98%)
Mutual labels:  bloom-filter

proof-of-work

Build Status NPM version

Proof of work based on SHA256 and Bloom filter.

Usage

Solver:

const pow = require('proof-of-work');

const solver = new pow.Solver();

// complexity=13 prefix=abcd
const prefix = Buffer.from('abcd', 'hex');
const nonce = solver.solve(13, /* optional */ prefix);
console.log(nonce);

Verifier:

const pow = require('proof-of-work');

const verifier = new pow.Verifier({
  // bit-size of Bloom filter
  size: 1024,

  // number of hash functions in a Bloom filter
  n: 16,

  // target complexity
  complexity: 19,

  // **recommended, but optional** nonce prefix
  // It is highly suggested to use unique nonce prefix for your application
  // to avoid nonce-reuse attack
  prefix: Buffer.from('abcd', 'hex'),

  // nonce validity time (default: one minute)
  validity: 60000
});

// Remove stale nonces from Bloom filter
setInterval(() => {
  verifier.reset();
}, 60000);

verifier.check(nonce);

// Optionally, complexity may be raised/lowered in specific cases
verifier.check(nonce, 21);

CLI

$ npm install -g proof-of-work

$ proof-of-work -h
Usage: proof-of-work [prefix] <complexity>                - generate nonce
       proof-of-work verify [prefix] <complexity> [nonce] - verify nonce

$ proof-of-work 20
0000015cb7756da0812e3b723dcdcfbd

$ proof-of-work verify 20 \
    0000015cb7756da0812e3b723dcdcfbd && \
    echo success
success

$ proof-of-work 13 | proof-of-work verify 13 && echo success
success

$ proof-of-work 0 | proof-of-work verify 32 || echo failure
failure

Technique

The generated nonce must have following structure:

[ Unsigned 64-bit Big Endian timestamp ] [ ... random bytes ]

Timestamp MUST be equal to number of milliseconds since 1970-01-01T00:00:00.000Z in UTC time.

Verifier has two Bloom filters: current and previous, and operates using following algorithm:

  1. Check that 8 < nonce.length <= 32 (byte length)
  2. Check that timestamp is within validity range: Math.abs(timestamp - Date.now()) <= validity
  3. Look up nonce in both Bloom filters. If present in any of them - fail
  4. Compute SHA256(prefix ++ nonce) and check that N = complexity most-significant bits (in Big Endian encoding) are zero
  5. Add nonce to the current Bloom filter

verifier.reset() copies current Bloom filter to previous, and resets current Bloom filter.

Complexity

Here is a chart of average time in seconds to solution vs target complexity:

timing

LICENSE

This software is licensed under the MIT License.

Copyright Fedor Indutny, 2017.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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