Compare commits

...

1 Commits

Author SHA1 Message Date
Anton Livaja 9cdd3b5aca
feat: require key to be at least 128 bits 2024-04-29 14:39:23 -04:00
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,10 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
bit_size % 8 == 0,
"Bit size must be divisible by 8, got: {bit_size}"
);
assert!(
bit_size >= 128,
"Minimum supported bit size is 128, got {bit_size}"
);
match bit_size {
128 | 256 | 512 => {}
_ => {