From 460d7e7fd25625e78fe3ead695e59da61d446503 Mon Sep 17 00:00:00 2001 From: Moudy Date: Wed, 29 Apr 2026 14:54:24 +0200 Subject: [PATCH] fix: fmt --- key_protocol/src/key_management/group_key_holder.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/key_protocol/src/key_management/group_key_holder.rs b/key_protocol/src/key_management/group_key_holder.rs index 52e1429a..57f27a06 100644 --- a/key_protocol/src/key_management/group_key_holder.rs +++ b/key_protocol/src/key_management/group_key_holder.rs @@ -91,7 +91,8 @@ impl GroupKeyHolder { /// The new GMS is `SHA256(PREFIX || rotation_salt || old_gms)`. The rotation salt must /// be a fresh 32-byte random value contributed by the member who initiates the rotation. /// Reusing a salt from a previous ratchet produces the same GMS as that previous - /// ratchet, collapsing the key rotation. Callers must generate the salt from a secure random source. + /// ratchet, collapsing the key rotation. Callers must generate the salt from a secure random + /// source. /// /// After ratcheting, all remaining controllers must receive the new `GroupKeyHolder` /// via `seal_for` / `unseal`.