mirror of
https://github.com/rosenpass/rosenpass.git
synced 2025-12-12 15:49:22 -08:00
In the doctests in kem.rs, the actual tests that are run to verify that the KyberKem and the DummyKem actually work are wrapped inside a function to make use of the ?-operator. However, these functions were never called and thus the tests weren't really helpful and didn't provide proper coverage.
18 lines
515 B
TOML
18 lines
515 B
TOML
[package]
|
|
name = "rosenpass-cipher-traits"
|
|
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 traits for cryptographic primitives"
|
|
homepage = "https://rosenpass.eu/"
|
|
repository = "https://github.com/rosenpass/rosenpass"
|
|
readme = "readme.md"
|
|
|
|
[dependencies]
|
|
|
|
[dev-dependencies]
|
|
rosenpass-oqs = { workspace = true }
|
|
rosenpass-secret-memory = { workspace = true }
|
|
anyhow = {workspace = true}
|