tor-llcrypto: style fixes on BlindingError

This commit is contained in:
Nick Mathewson 2022-06-22 08:47:18 -04:00
parent 9ba7750dfe
commit f6d6ac7fe9
1 changed files with 2 additions and 2 deletions

View File

@ -105,10 +105,10 @@ pub fn convert_curve25519_to_ed25519_private(
#[non_exhaustive]
pub enum BlindingError {
/// A bad public key was provided for blinding
#[error("Bad pubkey provided")]
#[error("Public key was invalid")]
BadPubkey,
/// Dalek failed the scalar multiplication
#[error("Key blinding Failed")]
#[error("Key blinding failed")]
BlindingFailed,
}