feat(cli): add AES to cli app

This commit is contained in:
2025-11-24 11:23:37 +02:00
parent 5b3ca7eacf
commit 051bba33a8
6 changed files with 47 additions and 35 deletions

View File

@@ -107,7 +107,7 @@ fn parse_radix(s: &str, radix: u32) -> Result<u128, BlockError> {
}
fn ascii_string_to_u128(s: &str) -> Result<u128, BlockError> {
if s.len() > 8 {
if s.len() > 16 {
return Err(BlockError::InvalidByteStringLength(s.len()));
}