Skip to content

Commit

Permalink
refactor(aegis_128l): make AES_BLOCK_LEN internal
Browse files Browse the repository at this point in the history
  • Loading branch information
codahale committed Oct 31, 2023
1 parent c5e0162 commit 598dc73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aegis_128l.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ mod x86_64;
pub const BLOCK_LEN: usize = 32;

/// The length of an AES block.
pub const AES_BLOCK_LEN: usize = 16;
const AES_BLOCK_LEN: usize = 16;

/// An AEGIS-128L instance.
#[derive(Debug, Clone)]
Expand Down

0 comments on commit 598dc73

Please sign in to comment.