2019-07-23 00:34:45 +05:30
|
|
|
# PoW-SHA256
|
2019-05-11 02:58:06 +05:30
|
|
|
|
2019-07-23 00:59:16 +05:30
|
|
|
Rust crate which generates SHA256 Proofs of Work on serializable datatypes.
|
|
|
|
|
|
|
|
Any type that implements `serde::Deserialize` can be used.
|
2019-05-11 02:58:06 +05:30
|
|
|
|
2019-07-23 00:34:45 +05:30
|
|
|
This is a fork of the [`Pow` library](https://github.com/bddap/pow) by bddap with some new additions. Primary of these being:
|
|
|
|
|
|
|
|
- PoW datatype now saves the calculation result to be used for checking proof validity given input
|
|
|
|
- `is_valid_proof` method to do the above mentioned
|
|
|
|
|
|
|
|
Other small changes have also been included of various importance but mostly just stylistic/ease of use improvements.
|
2019-05-13 22:40:19 +05:30
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
Prove we did work targeting a phrase.
|
|
|
|
|
2019-05-13 22:53:00 +05:30
|
|
|
```rust
|
2019-07-22 23:24:13 +05:30
|
|
|
use PoW::PoW;
|
2019-05-13 22:40:19 +05:30
|
|
|
|
|
|
|
// very easy mode
|
|
|
|
let difficulty = u128::max_value() - u128::max_value() / 2;
|
|
|
|
|
|
|
|
let phrase = b"Phrase to tag.".to_vec();
|
2019-07-22 23:24:13 +05:30
|
|
|
let pw = PoW::prove_work(&phrase, difficulty).unwrap();
|
2019-05-13 22:40:19 +05:30
|
|
|
assert!(pw.score(&phrase).unwrap() >= difficulty);
|
|
|
|
```
|
|
|
|
|
|
|
|
Prove more difficult work. This time targeting a time.
|
|
|
|
|
2019-05-13 22:53:00 +05:30
|
|
|
```rust
|
2019-05-13 22:40:19 +05:30
|
|
|
// more diffcult, takes around 100_000 hashes to generate proof
|
|
|
|
let difficulty = u128::max_value() - u128::max_value() / 100_000;
|
|
|
|
|
|
|
|
let now: u64 = get_unix_time_seconds();
|
2019-07-22 23:24:13 +05:30
|
|
|
let pw = PoW::prove_work(&now, difficulty).unwrap();
|
2019-05-13 22:40:19 +05:30
|
|
|
assert!(pw.score(&now).unwrap() >= difficulty);
|
|
|
|
```
|
|
|
|
|
2019-05-17 21:47:27 +05:30
|
|
|
Define a blockchain block.
|
|
|
|
|
|
|
|
```rust
|
|
|
|
struct Block<T> {
|
|
|
|
prev: [u8; 32], // hash of last block
|
|
|
|
payload: T, // generic data
|
2019-07-22 23:24:13 +05:30
|
|
|
proof_of_work: PoW<([u8; 32], T)>,
|
2019-05-17 21:47:27 +05:30
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-07-23 00:59:16 +05:30
|
|
|
# Hashing Scheme
|
2019-05-13 22:40:19 +05:30
|
|
|
|
2019-07-23 00:59:16 +05:30
|
|
|
SHA256 is calculated over the concatenation of the:
|
|
|
|
- SALT
|
|
|
|
- Serialized Input `T`
|
|
|
|
- Nonce
|
2019-05-13 22:40:19 +05:30
|
|
|
|
2019-07-23 00:59:16 +05:30
|
|
|
The first 16 bytes of the resulting hash are interpreted as a 128 bit unsigned integer.
|
2019-05-13 22:40:19 +05:30
|
|
|
|
2019-07-23 00:59:16 +05:30
|
|
|
A randomly generated constant, `SALT`, is used as prefix to prevent PoW reuse from other systems such as proof of work blockchains.
|
2019-05-13 22:40:19 +05:30
|
|
|
|
|
|
|
# Choosing a difficulty setting.
|
|
|
|
|
|
|
|
Difficulty settings are usually best adjusted dynamically a la bitcoin.
|
|
|
|
|
|
|
|
To manually select a difficulty, choose the average number of hashes required.
|
|
|
|
|
2019-05-13 22:53:00 +05:30
|
|
|
```rust
|
2019-05-13 22:40:19 +05:30
|
|
|
fn difficulty(average: u128) -> u128 {
|
|
|
|
debug_assert_ne!(average, 0, "It is impossible to prove work in zero attempts.");
|
|
|
|
let m = u128::max_value();
|
|
|
|
m - m / average
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Conversely, to calculate probable number of hashes required to satisfy a given minimum
|
|
|
|
difficulty.
|
|
|
|
|
2019-05-13 22:53:00 +05:30
|
|
|
```rust
|
2019-05-13 22:40:19 +05:30
|
|
|
fn average(difficulty: u128) -> u128 {
|
|
|
|
let m = u128::max_value();
|
|
|
|
if difficulty == m {
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
m / (m - difficulty)
|
|
|
|
}
|
|
|
|
```
|
2019-07-20 03:06:57 +05:30
|
|
|
|
|
|
|
# License
|
|
|
|
|
2019-07-23 00:59:16 +05:30
|
|
|
This project is dual-licensed under `Apache License Version 2.0` & `MIT license`.
|