vep

Crates.iovep
lib.rsvep
version2.1.0
sourcesrc
created_at2021-08-22 19:12:19.024329
updated_at2021-09-07 03:18:30.5709
descriptionVariable-length Expansion Pass function. ( i.e. short password to long hashed password )
homepagehttps://github.com/just-do-halee/vep
repositoryhttps://github.com/just-do-halee/vep
max_upload_size
id440815
size27,588
Doha Lee (just-do-halee)

documentation

README

vep

Variable-length Expansion Pass function. ( i.e. short password to long hashed password )

CI Crates.io Licensed Twitter

| Docs | Latest Note |

[dependencies]
vep = "2.1.0"

or

[dependencies]
vep = { version = "2.1.0", default-features = false } # no-std

How to

use vep::Vep;
use sha2::{Sha256, Digest}; // can be any hasher(dyn Digest from `digest` crate)

let src = b"hello vep!"; // <- 10 bytes
let expanded = Vep(Sha256::new()).expand(src); // -> 10 * 32 bytes == `320 bytes`

assert_eq!(expanded.len(), Vep::<Sha256>::output_size_calc(src));

Fixed size available

let src = b"hello vep!"; // <- 10 bytes
let result = Vep(Sha256::new()).expand_and_then_reduce(src); // -> 320 bytes -> `32 bytes` (reduced)

assert_eq!(result.len(), Vep::<Sha256>::reduced_size_calc());

* Algorithm


Vep Image

Commit count: 7

cargo fmt