File tree
4 files changed
+4
-3
lines changed- Carthage/Checkouts
4 files changed
+4
-3
lines changedLines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| 5 | + |
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + |
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + |
Submodule CryptoSwift updated 90 files
- .swift-version+1-1
- CHANGELOG+40
- CryptoSwift.playground/Contents.swift+11-14
- CryptoSwift.playground/contents.xcplayground+1-1
- CryptoSwift.podspec+3-3
- CryptoSwift.xcodeproj/project.pbxproj+176-288
- CryptoSwift.xcodeproj/xcshareddata/xcbaselines/754BE45F19693E190098E6F3.xcbaseline/2774350F-3E36-4FB9-835D-90E1E9EF7CE0.plist+22
- CryptoSwift.xcodeproj/xcshareddata/xcbaselines/754BE45F19693E190098E6F3.xcbaseline/7797B693-C86A-4026-B2CE-05813EFA26F4.plist+22
- CryptoSwift.xcodeproj/xcshareddata/xcbaselines/754BE45F19693E190098E6F3.xcbaseline/BD46E9D4-C65B-4C11-9BB5-B8B05CCE976F.plist+22
- CryptoSwift.xcodeproj/xcshareddata/xcschemes/CryptoSwift.xcscheme+1-1
- README.md+64-42
- Sources/CryptoSwift/AES.swift+168-139
- Sources/CryptoSwift/Array+Extension.swift+56-15
- Sources/CryptoSwift/Authenticator.swift+10-2
- Sources/CryptoSwift/BatchedCollection.swift+60
- Sources/CryptoSwift/Bit.swift+11-2
- Sources/CryptoSwift/BlockCipher.swift+11-3
- Sources/CryptoSwift/BlockMode/BlockMode.swift+10-2
- Sources/CryptoSwift/BlockMode/BlockModeOptions.swift+11-3
- Sources/CryptoSwift/BlockMode/BlockModeWorker.swift+12-4
- Sources/CryptoSwift/BlockMode/CBC.swift+18-9
- Sources/CryptoSwift/BlockMode/CFB.swift+16-7
- Sources/CryptoSwift/BlockMode/CTR.swift+16-7
- Sources/CryptoSwift/BlockMode/ECB.swift+15-6
- Sources/CryptoSwift/BlockMode/OFB.swift+15-6
- Sources/CryptoSwift/BlockMode/PCBC.swift+16-7
- Sources/CryptoSwift/BlockMode/RandomAccessBlockModeWorker.swift+10-2
- Sources/CryptoSwift/Blowfish.swift+520
- Sources/CryptoSwift/BytesSequence.swift-25
- Sources/CryptoSwift/CSArrayType+Extensions.swift+27-12
- Sources/CryptoSwift/ChaCha20.swift+230-139
- Sources/CryptoSwift/Checksum.swift+86-79
- Sources/CryptoSwift/Cipher.swift+12-4
- Sources/CryptoSwift/Collection+Extension.swift+31-21
- Sources/CryptoSwift/Cryptors.swift+14-5
- Sources/CryptoSwift/Digest.swift+24-8
- Sources/CryptoSwift/DigestType.swift+13-3
- Sources/CryptoSwift/Foundation/AES+Foundation.swift+13-4
- Sources/CryptoSwift/Foundation/Blowfish+Foundation.swift+28
- Sources/CryptoSwift/Foundation/CSArrayType+Foundation.swift+11-2
- Sources/CryptoSwift/Foundation/ChaCha20+Foundation.swift+12-3
- Sources/CryptoSwift/Foundation/Data+Extension.swift+17-11
- Sources/CryptoSwift/Foundation/HMAC+Foundation.swift+13-4
- Sources/CryptoSwift/Foundation/Rabbit+Foundation.swift+15-6
- Sources/CryptoSwift/Foundation/String+FoundationExtension.swift+10-3
- Sources/CryptoSwift/Foundation/Utils+Foundation.swift+17-9
- Sources/CryptoSwift/Generics.swift+25-99
- Sources/CryptoSwift/HMAC.swift+23-16
- Sources/CryptoSwift/Info.plist+1-1
- Sources/CryptoSwift/Int+Extension.swift+7-5
- Sources/CryptoSwift/IntegerConvertible.swift+25-12
- Sources/CryptoSwift/MD5.swift+70-58
- Sources/CryptoSwift/NoPadding.swift+16-8
- Sources/CryptoSwift/Operators.swift+23-14
- Sources/CryptoSwift/PKCS5/PBKDF1.swift+16-8
- Sources/CryptoSwift/PKCS5/PBKDF2.swift+33-26
- Sources/CryptoSwift/PKCS5/PKCS5.swift+12-4
- Sources/CryptoSwift/PKCS7.swift+18-10
- Sources/CryptoSwift/Padding.swift+12-4
- Sources/CryptoSwift/Poly1305.swift+122-253
- Sources/CryptoSwift/Rabbit.swift+57-48
- Sources/CryptoSwift/RandomAccessCryptor.swift+10-2
- Sources/CryptoSwift/RandomBytesSequence.swift+10-2
- Sources/CryptoSwift/SHA1.swift+63-53
- Sources/CryptoSwift/SHA2.swift+127-108
- Sources/CryptoSwift/SHA3.swift+73-59
- Sources/CryptoSwift/SecureBytes.swift+43-5
- Sources/CryptoSwift/String+Extension.swift+22-8
- Sources/CryptoSwift/UInt16+Extension.swift+13-4
- Sources/CryptoSwift/UInt32+Extension.swift+14-6
- Sources/CryptoSwift/UInt64+Extension.swift+20-6
- Sources/CryptoSwift/UInt8+Extension.swift+22-16
- Sources/CryptoSwift/Updatable.swift+27-19
- Sources/CryptoSwift/Utils.swift+46-28
- Sources/CryptoSwift/ZeroPadding.swift+15-7
- Tests/CryptoSwiftTests/AESTests.swift+194-150
- Tests/CryptoSwiftTests/Access.swift+60-39
- Tests/CryptoSwiftTests/BlowfishTests.swift+216
- Tests/CryptoSwiftTests/ChaCha20Tests.swift+65-56
- Tests/CryptoSwiftTests/DigestTests.swift+123-95
- Tests/CryptoSwiftTests/Error+Extension.swift+5-4
- Tests/CryptoSwiftTests/ExtensionsTest.swift+47-19
- Tests/CryptoSwiftTests/HMACTests.swift+21-22
- Tests/CryptoSwiftTests/PBKDF.swift+30-11
- Tests/CryptoSwiftTests/PaddingTests.swift+15-14
- Tests/CryptoSwiftTests/Poly1305Tests.swift+21-14
- Tests/CryptoSwiftTests/RabbitTests.swift+23-20
- Tests/CryptoSwiftTests/RandomBytesSequenceTests.swift+3-2
- Tests/LinuxMain.swift+3-2
- scripts/CI.sh+4-3
0 commit comments