Skip to content

Commit d9da060

Browse files
NirmaNicholas Maccharoli
authored andcommitted
fix vertical whitespace
1 parent e9c9c22 commit d9da060

File tree

6 files changed

+0
-8
lines changed

6 files changed

+0
-8
lines changed

CryptoSwift-TestHostApp/AppDelegate.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
1919

2020
var window: UIWindow?
2121

22-
2322
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
2423
// Override point for customization after application launch.
2524
return true
@@ -47,5 +46,4 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
4746
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
4847
}
4948

50-
5149
}

Sources/CryptoSwift/BlockMode/CCM.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import Darwin
2222
import Glibc
2323
#endif
2424

25-
2625
/// Counter with Cipher Block Chaining-Message Authentication Code
2726
public struct CCM: StreamMode {
2827
public enum Error: Swift.Error {
@@ -70,7 +69,6 @@ public struct CCM: StreamMode {
7069
self.authenticationTag = authenticationTag
7170
}
7271

73-
7472
public func worker(blockSize: Int, cipherOperation: @escaping CipherOperationOnBlock) throws -> CipherModeWorker {
7573
if nonce.isEmpty {
7674
throw Error.invalidInitializationVector

Sources/CryptoSwift/Updatable.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ extension Updatable {
6464
return try finish(withBytes: bytes.slice)
6565
}
6666

67-
6867
/// Finish updates. May add padding.
6968
///
7069
/// - Returns: Processed data

Tests/CryptoSwiftTests/AESCCMTests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,6 @@ final class AESCCMTests: XCTestCase {
396396
}
397397
}
398398

399-
400399
func testAESCCMTestCase1() {
401400
let key: Array<UInt8> = [0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f]
402401
let nonce: Array<UInt8> = [0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16]

Tests/CryptoSwiftTests/AESTests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,6 @@ final class AESTests: XCTestCase {
312312
XCTAssertEqual(decrypted, plaintext, "decryption failed")
313313
}
314314

315-
316315
func testAESEncryptCTRStream() {
317316
let key = Array<UInt8>(hex: "0xbe3e9020816eb838782e2d9f4a2f40d4")
318317
let iv = Array<UInt8>(hex: "0x0000000000000000a9bbd681ded0c0c8")

Tests/CryptoSwiftTests/ScryptTestsPerf.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
// - This notice may not be removed or altered from any source or binary distribution.
1414
//
1515

16-
1716
@testable import CryptoSwift
1817
import XCTest
1918

0 commit comments

Comments
 (0)