Skip to content

Commit 351555c

Browse files
NirmaNicholas Maccharoli
authored andcommitted
fix colon spacing
1 parent 7c94c0b commit 351555c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/CryptoSwift/CBCMAC.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ public final class CBCMAC: CMAC {
1818
var inBytes = bytes
1919
bitPadding(to: &inBytes, blockSize: CMAC.BlockSize)
2020
let blocks = inBytes.batched(by: CMAC.BlockSize)
21-
22-
var lastBlockEncryptionResult : [UInt8] = CBCMAC.Zero
21+
22+
var lastBlockEncryptionResult: [UInt8] = CBCMAC.Zero
2323
try blocks.forEach { (block) in
2424
let aes = try AES(key: Array(key), blockMode: CBC(iv: lastBlockEncryptionResult), padding: .noPadding)
2525
lastBlockEncryptionResult = try aes.encrypt(block)
2626
}
27-
27+
2828
return lastBlockEncryptionResult
2929
}
3030
}

0 commit comments

Comments
 (0)