Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 84342f6

Browse files
committedJun 10, 2025··
Cargo fmt
1 parent 439b254 commit 84342f6

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed
 

‎crates/bitwarden-crypto/examples/signature.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
//! This example demonstrates how to create signatures and countersignatures for a message, and how to verify them.
1+
//! This example demonstrates how to create signatures and countersignatures for a message, and how
2+
//! to verify them.
23
34
use bitwarden_crypto::{CoseSerializable, SigningNamespace};
45
use serde::{Deserialize, Serialize};

‎crates/bitwarden-crypto/src/signing/signature.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ impl SigningKey {
7878
/// ```
7979
/// use bitwarden_crypto::{SigningNamespace, SignatureAlgorithm, SigningKey};
8080
/// use serde::{Serialize, Deserialize};
81-
///
81+
///
8282
/// const EXAMPLE_NAMESPACE: SigningNamespace = SigningNamespace::SignedPublicKey;
8383
///
8484
/// #[derive(Serialize, Deserialize, Debug, PartialEq)]

‎crates/bitwarden-crypto/src/signing/signed_object.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ impl SigningKey {
121121
/// ```
122122
/// use bitwarden_crypto::{SigningNamespace, SignatureAlgorithm, SigningKey};
123123
/// use serde::{Serialize, Deserialize};
124-
///
124+
///
125125
/// const EXAMPLE_NAMESPACE: SigningNamespace = SigningNamespace::SignedPublicKey;
126126
///
127127
/// #[derive(Serialize, Deserialize, Debug, PartialEq)]

0 commit comments

Comments
 (0)
Please sign in to comment.