Browse Source

Merge branch 'master' into develop

Marcin Krzyżanowski 7 years ago
parent
commit
3323e1e8c9
2 changed files with 2 additions and 2 deletions
  1. 1 1
      README.md
  2. 1 1
      Tests/CryptoSwiftTests/Access.swift

+ 1 - 1
README.md

@@ -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"),
 ]
 ```
 

+ 1 - 1
Tests/CryptoSwiftTests/Access.swift

@@ -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 {