Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Firstyear committed Mar 8, 2024
1 parent fa9681b commit 6909a2f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cryptoki/src/mechanism/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6909a2f

Please sign in to comment.