@@ -159,7 +159,7 @@ or more strict
```swift
dependencies: [
- .Package(url: "ttps://github.com/krzyzanowskim/CryptoSwift.git", "0.7.2"),
+ .Package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", "0.7.2"),
]
```
@@ -209,7 +209,7 @@ class Access: XCTestCase {
let enc = try cipher.encrypt([1, 2, 3])
_ = try cipher.decrypt(enc)
- _ = try Blowfish(key: [1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6], iv: [1, 2, 3, 4, 5, 6, 7, 8], padding: .noPadding)
+ _ = try Blowfish(key: [1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6], padding: .noPadding)
_ = Blowfish.blockSize
} catch {