File tree 4 files changed +7
-7
lines changed
CryptomatorCryptoLib.xcodeproj
Sources/CryptomatorCryptoLib
Tests/CryptomatorCryptoLibTests
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 175
175
9EB822C2248AF9C500879838 /* AesCtrTests.swift */,
176
176
9E44EEA724599C7800A37B01 /* AesSivTests.swift */,
177
177
9E35C4EA24576A3D0006E50C /* CryptorTests.swift */,
178
+ 74A5B57D25A86A69002D10F7 /* CryptoSupportMock.swift */,
178
179
9EBEC946283782E6002210DE /* CtrCryptorTests.swift */,
179
180
9EBEC94828378308002210DE /* GcmCryptorTests.swift */,
180
- 74A5B57D25A86A69002D10F7 /* CryptoSupportMock.swift */,
181
181
74A5B57525A869DD002D10F7 /* MasterkeyFileTests.swift */,
182
182
9E9BB81524558DFF00F9FF51 /* MasterkeyTests.swift */,
183
183
);
Original file line number Diff line number Diff line change @@ -71,8 +71,8 @@ public class Cryptor {
71
71
return contentCryptor. nonceLen + fileHeaderPayloadSize + contentCryptor. tagLen
72
72
}
73
73
74
- public let cleartextChunkSize = 32 * 1024
75
- public var ciphertextChunkSize : Int {
74
+ private let cleartextChunkSize = 32 * 1024
75
+ var ciphertextChunkSize : Int {
76
76
return contentCryptor. nonceLen + cleartextChunkSize + contentCryptor. tagLen
77
77
}
78
78
Original file line number Diff line number Diff line change 1
1
//
2
- // CryptorTests .swift
2
+ // CtrCryptorTests .swift
3
3
// CryptomatorCryptoLibTests
4
4
//
5
5
// Created by Sebastian Stenzel on 27.04.20.
Original file line number Diff line number Diff line change 1
1
//
2
- // CryptorTests .swift
2
+ // GcmCryptorTests .swift
3
3
// CryptomatorCryptoLibTests
4
4
//
5
- // Created by Sebastian Stenzel on 27.04.20 .
6
- // Copyright © 2020 Skymatic GmbH. All rights reserved.
5
+ // Created by Sebastian Stenzel on 20.05.22 .
6
+ // Copyright © 2022 Skymatic GmbH. All rights reserved.
7
7
//
8
8
9
9
import XCTest
You can’t perform that action at this time.
0 commit comments