chore: Move hashing functions into sodium/ciphers crate

This finishes the last step of removing sodium.rs from the rosenpass crate
itself and also removes the NOTHING and NONCE0 constants.

Hashing functions now use destination parameters;
rosenpass_constant_time::xor now does too.
This commit is contained in:
Karolin Varner
2023-11-28 15:06:27 +01:00
committed by Karolin Varner
parent d44793e07f
commit 09aa0e027e
21 changed files with 203 additions and 202 deletions

View File

@@ -21,6 +21,9 @@ path = "../sodium"
[dependencies.rosenpass-ciphers]
path = "../ciphers"
[dependencies.rosenpass-to]
path = "../to"
[[bin]]
name = "fuzz_handle_msg"
path = "fuzz_targets/handle_msg.rs"