feat: require at least 128 bits of entropy
This commit is contained in:
parent
089021a302
commit
81ca435de1
|
@ -14,6 +14,10 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
bit_size <= 256,
|
bit_size <= 256,
|
||||||
"Maximum supported bit size is 256, got: {bit_size}"
|
"Maximum supported bit size is 256, got: {bit_size}"
|
||||||
);
|
);
|
||||||
|
assert!(
|
||||||
|
bit_size >= 128,
|
||||||
|
"Minimum supported bit size is 128, got {bit_size}"
|
||||||
|
);
|
||||||
|
|
||||||
let entropy = keyfork_entropy::generate_entropy_of_size(bit_size / 8)?;
|
let entropy = keyfork_entropy::generate_entropy_of_size(bit_size / 8)?;
|
||||||
println!("{}", smex::encode(entropy));
|
println!("{}", smex::encode(entropy));
|
||||||
|
|
Loading…
Reference in New Issue