pow_sha256/examples/simple.rs

21 lines
573 B
Rust
Raw Permalink Normal View History

2021-03-06 17:07:28 +05:30
/* The easiest way to use this crate is with the default configuration.
* See `Default` implementation for the default configuration.
*/
use pow_sha256::{ConfigBuilder, PoW};
fn main() {
let config = ConfigBuilder::default()
.salt("myrandomsaltisnotlongenoug".into())
.build()
.unwrap();
let phrase = "ironmansucks";
2021-03-08 18:27:18 +05:30
const DIFFICULTY: u32 = 1000;
2021-03-06 17:07:28 +05:30
let work = config.prove_work(&phrase, DIFFICULTY).unwrap();
assert!(config.is_valid_proof(&work, &phrase));
assert!(config.is_sufficient_difficulty(&work, DIFFICULTY));
}