doc(ciphers): correct formatting

This commit is contained in:
David Niehues
2025-03-24 17:35:28 +01:00
committed by Jan Winkelmann (keks)
parent 7566eadef8
commit 8bb54b9cca

View File

@@ -1,9 +1,9 @@
//! This module provides types that enabling choosing the keyed hash building block to be used at
//! runtime (using enums) instead of at compile time (using generics).
use std::fmt::Display;
use anyhow::Result;
use rosenpass_cipher_traits::primitives::KeyedHashInstance;
use std::fmt::Display;
use crate::subtle::{
custom::incorrect_hmac_blake2b::IncorrectHmacBlake2b, rust_crypto::keyed_shake256::SHAKE256_32,
@@ -61,5 +61,4 @@ impl Display for KeyedHash {
Self::IncorrectHmacBlake2b(_) => write!(f, "IncorrectHmacBlake2b"),
}
}
}