Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Clean up nonsense comments
  • Loading branch information
bugadani committed Aug 27, 2024
commit 2f852e0c96507c37bdc7e4b22087fc0ebb7c32fe
8 changes: 4 additions & 4 deletions esp-hal/src/rsa/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,15 +140,15 @@ impl<'d, DM: crate::Mode> Rsa<'d, DM> {
}
}

/// Defines an RSA operation mode.
/// Defines the input size of an RSA operation.
pub trait RsaMode: crate::private::Sealed {
/// The input data type used for the RSA operation.
/// The input data type used for the operation.
type InputType;
}

/// A trait for RSA operations that involve multiple inputs and outputs.
/// Defines the output type of RSA multiplications.
pub trait Multi: RsaMode {
/// The type of the output produced by the RSA operation.
/// The type of the output produced by the operation.
type OutputType;
}

Expand Down