Skip to content

Commit

Permalink
feat(concrete_csprng): refactor the csprng to prepare core backend split
Browse files Browse the repository at this point in the history
BREAKING_CHANGE: this commit completely breaks the previous API
  • Loading branch information
aPere3 committed Apr 20, 2022
1 parent 1293596 commit 54a7391
Show file tree
Hide file tree
Showing 28 changed files with 2,436 additions and 1,716 deletions.
12 changes: 8 additions & 4 deletions concrete-csprng/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,17 @@ rand = "0.8.3"
criterion = "0.3"

[features]
slow = []
multithread = ["rayon"]
parallel = ["rayon"]
seeder_rdseed = []
seeder_linux = []
generator_aesni = []
generator_soft = []

[[bench]]
name = "benchmark"
harness = false

[[bin]]
name = "generate_random"
path = "src/generate_random.rs"
name = "generate"
path = "src/main.rs"
required-features = ["seeder_rdseed", "generator_aesni"]
271 changes: 0 additions & 271 deletions concrete-csprng/src/counter/mod.rs

This file was deleted.

Loading

0 comments on commit 54a7391

Please sign in to comment.