From 6909a2fbaef7b7d06377ef8c91caa3c92b3ad95a Mon Sep 17 00:00:00 2001 From: William Brown Date: Fri, 8 Mar 2024 17:31:17 +1000 Subject: [PATCH] fmt --- cryptoki/src/mechanism/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cryptoki/src/mechanism/mod.rs b/cryptoki/src/mechanism/mod.rs index 281a10b..984d226 100644 --- a/cryptoki/src/mechanism/mod.rs +++ b/cryptoki/src/mechanism/mod.rs @@ -77,7 +77,9 @@ impl MechanismType { pub const AES_CMAC: MechanismType = MechanismType { val: CKM_AES_CMAC }; /// AES-CFB128 mechanism - pub const AES_CFB128: MechanismType = MechanismType { val: CKM_AES_CFB128 }; + pub const AES_CFB128: MechanismType = MechanismType { + val: CKM_AES_CFB128, + }; // RSA /// PKCS #1 RSA key pair generation mechanism