We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7491cbc commit 29a2cc3Copy full SHA for 29a2cc3
src/rust/src/backend/ciphers.rs
@@ -508,7 +508,10 @@ impl PyAEADDecryptionContext {
508
return Err(CryptographyError::from(
509
pyo3::exceptions::PyValueError::new_err(
510
// Defensive error handling - rarely triggered in normal usage
511
- format!("Authentication tag cannot be more than {} bytes.", GCM_STANDARD_TAG_SIZE),
+ format!(
512
+ "Authentication tag cannot be more than {} bytes.",
513
+ GCM_STANDARD_TAG_SIZE
514
+ ),
515
),
516
));
517
}
0 commit comments