Skip to content

Commit

Permalink
Release 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
krzyzanowskim committed Jan 7, 2024
1 parent aa90fb4 commit 7892a12
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.8.1
- Update publicKeyDER to support exponent of any byte length
- Add SHA3 variants for RSA signature verification
- Throw error on unsupported calls, rather than call fatalError
- Update PKCS7 padding logic
- Add SDK Privacy Manifest - PrivacyInfo.xcprivacy

1.8.0
- Add XChaCha20 and XChaCha20-Poly1305 (@zssz)

Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ organizations who have contributed source code to CryptoSwift.
- Tomasz Szulc <[email protected]>
- Tomasz Wierzbik <[email protected]>
- Valeriy Van <[email protected]>
- WFrost3 <[email protected]>
- Xavier Matos <[email protected]>
- Yannick Loriot <[email protected]>
- Yury Lapitsky <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion CryptoSwift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "CryptoSwift"
s.version = "1.8.0"
s.version = "1.8.1"
s.source = { :git => "https://github.com/krzyzanowskim/CryptoSwift.git", :tag => "#{s.version}" }
s.summary = "Cryptography in Swift. SHA, MD5, CRC, PBKDF, Poly1305, HMAC, CMAC, HDKF, Scrypt, ChaCha20, Rabbit, Blowfish, AES, RSA."
s.description = "Cryptography functions and helpers for Swift implemented in Swift. SHA-1, SHA-2, SHA-3, MD5, PBKDF1, PBKDF2, Scrypt, CRC, Poly1305, HMAC, ChaCha20, Rabbit, Blowfish, AES, RSA"
Expand Down
2 changes: 2 additions & 0 deletions CryptoSwift.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,7 @@
75B3ED76210F9DF7005D4ADA /* BlockDecryptor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BlockDecryptor.swift; sourceTree = "<group>"; };
75B3ED78210FA016005D4ADA /* BlockEncryptor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BlockEncryptor.swift; sourceTree = "<group>"; };
75C2E76C1D55F097003D2BCA /* Access.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Access.swift; sourceTree = "<group>"; };
75C454012B4B6EBC00FC5020 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = Sources/CryptoSwift/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
75D7AF37208BFB1600D22BEB /* UInt128.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UInt128.swift; sourceTree = "<group>"; };
75EC52381EE8B6CA0048EB3B /* AES.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AES.swift; sourceTree = "<group>"; };
75EC52391EE8B6CA0048EB3B /* Array+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Array+Extension.swift"; sourceTree = "<group>"; };
Expand Down Expand Up @@ -530,6 +531,7 @@
754BE44B19693E190098E6F3 = {
isa = PBXGroup;
children = (
75C454012B4B6EBC00FC5020 /* PrivacyInfo.xcprivacy */,
75843E9A2072457A0050583A /* config */,
75EC52361EE8B6CA0048EB3B /* Sources */,
754BE46419693E190098E6F3 /* Tests */,
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ It is recommended to enable [Whole-Module Optimization](https://swift.org/blog/w
You can use [Swift Package Manager](https://swift.org/package-manager/) and specify dependency in `Package.swift` by adding this:

```swift
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMajor(from: "1.8.0"))
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMajor(from: "1.8.1"))
```

See: [Package.swift - manual](https://blog.krzyzanowskim.com/2016/08/09/package-swift-manual/)
Expand All @@ -143,7 +143,7 @@ Notice: Swift Package Manager uses debug configuration for debug Xcode build, th
You can use [CocoaPods](https://cocoapods.org/pods/CryptoSwift).

```ruby
pod 'CryptoSwift', '~> 1.8.0'
pod 'CryptoSwift', '~> 1.8.1'
```

Bear in mind that CocoaPods will build CryptoSwift without [Whole-Module Optimization](https://swift.org/blog/whole-module-optimizations/) that may impact performance. You can change it manually after installation, or use [cocoapods-wholemodule](https://github.com/jedlewison/cocoapods-wholemodule) plugin.
Expand Down
2 changes: 1 addition & 1 deletion config/Project-Shared.xcconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MARKETING_VERSION = 1.8.0
MARKETING_VERSION = 1.8.1

SUPPORTED_PLATFORMS = iphonesimulator iphoneos macosx appletvos watchos appletvsimulator watchsimulator

Expand Down

0 comments on commit 7892a12

Please sign in to comment.