* Replaces the Rng256 with RngCore from rand_core The old trait was designed with our software crypto in mind. We should use a more standard API going forward. - Removes libraries/rng256/ - Ports libraries/crypto/ to rand_core - Moves the used RNG trait to api/ * Use StdRng directy in TestEnv
14 lines
374 B
TOML
14 lines
374 B
TOML
[package]
|
|
name = "fuzz_helper"
|
|
version = "0.1.0"
|
|
authors = ["Mingxiao Guo <mingxguo@google.com>"]
|
|
license = "Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
arrayref = "0.3.6"
|
|
opensk = { path = "../..", features = ["fuzz"] }
|
|
crypto = { path = "../../../crypto", features = ['std'] }
|
|
sk-cbor = { path = "../../../cbor" }
|
|
arbitrary = { version = "0.4.7", features = ["derive"] }
|