mirror of
https://github.com/rosenpass/rosenpass.git
synced 2026-01-09 11:46:46 -08:00
- Use a new nomenclature for these functions based on the idea of a hash domain (as in domain separation); this makes much more sence - Remove the ciphers::hash export; we did not even export a hash function in the purest sence of the word. This gets us around the difficulty of figuring out what we should call the underlying primitive
20 lines
675 B
TOML
20 lines
675 B
TOML
[package]
|
|
name = "rosenpass-ciphers"
|
|
authors = ["Karolin Varner <karo@cupdev.net>", "wucke13 <wucke13@gmail.com>"]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Rosenpass internal ciphers and other cryptographic primitives used by rosenpass."
|
|
homepage = "https://rosenpass.eu/"
|
|
repository = "https://github.com/rosenpass/rosenpass"
|
|
readme = "readme.md"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
rosenpass-sodium = { workspace = true }
|
|
rosenpass-to = { workspace = true }
|
|
rosenpass-constant-time = { workspace = true }
|
|
rosenpass-secret-memory = { workspace = true }
|
|
static_assertions = { workspace = true }
|
|
zeroize = { workspace = true }
|