1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-24 05:27:45 +00:00

Fix Blowfish test

This commit is contained in:
Joshua Goins 2023-09-22 18:46:58 -04:00
parent 56a738fde7
commit e18a242bcb

View file

@ -20,7 +20,7 @@ const KEYBITS: u32 = 64u32 >> 3;
/// let fish = Blowfish::new(key);
/// let encrypted = fish.encrypt(data).unwrap();
/// let decrypted = fish.decrypt(&encrypted).unwrap();
/// # assert!(data == decrypted)
/// # assert_eq!(data, &decrypted[..])
/// ```
pub struct Blowfish {
p: [u32; 18],