Move shuffling to its own crate, update hash fn

Previously blake2s-256 was being used, now blake2b-512[:32] is being
used.
This commit is contained in:
Paul Hauner
2018-10-03 13:13:51 +10:00
parent 6a75aa3246
commit 2763f7bc00
6 changed files with 185 additions and 29 deletions

View File

@@ -0,0 +1,7 @@
[package]
name = "shuffling"
version = "0.1.0"
authors = ["Paul Hauner <paul@paulhauner.com>"]
[dependencies]
hashing = { path = "../hashing" }