Skip to content

Commit

Permalink
Update Cryptoswift dependency to 0.6.1 (kylef#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
hamchapman authored and kylef committed Oct 21, 2016
1 parent cc8193c commit 1e3d591
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "krzyzanowskim/CryptoSwift" ~> 0.6.0
github "krzyzanowskim/CryptoSwift" ~> 0.6.1
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "krzyzanowskim/CryptoSwift" "0.6.0"
github "krzyzanowskim/CryptoSwift" "0.6.1"
2 changes: 1 addition & 1 deletion Carthage/Checkouts/CryptoSwift
Submodule CryptoSwift updated 45 files
+1 −1 .swift-version
+10 −0 CHANGELOG
+1 −1 CryptoSwift.podspec
+35 −17 CryptoSwift.xcodeproj/project.pbxproj
+1 −3 Package.swift
+7 −6 README.md
+20 −6 Sources/CryptoSwift/AES.swift
+1 −1 Sources/CryptoSwift/BlockMode/CTR.swift
+5 −1 Sources/CryptoSwift/CSArrayType+Extensions.swift
+5 −3 Sources/CryptoSwift/Collection+Extension.swift
+5 −5 Sources/CryptoSwift/Cryptors.swift
+14 −5 Sources/CryptoSwift/Digest.swift
+21 −27 Sources/CryptoSwift/Foundation/Data+Extension.swift
+7 −5 Sources/CryptoSwift/Generics.swift
+6 −6 Sources/CryptoSwift/HMAC.swift
+1 −1 Sources/CryptoSwift/Info.plist
+6 −71 Sources/CryptoSwift/Int+Extension.swift
+3 −3 Sources/CryptoSwift/MD5.swift
+0 −22 Sources/CryptoSwift/Multiplatform.swift
+2 −6 Sources/CryptoSwift/Operators.swift
+2 −2 Sources/CryptoSwift/PKCS5/PBKDF1.swift
+11 −8 Sources/CryptoSwift/PKCS5/PBKDF2.swift
+43 −0 Sources/CryptoSwift/RandomBytesSequence.swift
+113 −81 Sources/CryptoSwift/SHA1.swift
+212 −177 Sources/CryptoSwift/SHA2.swift
+276 −0 Sources/CryptoSwift/SHA3.swift
+1 −1 Sources/CryptoSwift/SecureBytes.swift
+4 −6 Sources/CryptoSwift/String+Extension.swift
+10 −1 Sources/CryptoSwift/UInt16+Extension.swift
+12 −82 Sources/CryptoSwift/UInt32+Extension.swift
+15 −1 Sources/CryptoSwift/UInt64+Extension.swift
+1 −36 Sources/CryptoSwift/UInt8+Extension.swift
+1 −1 Sources/CryptoSwift/Utils.swift
+58 −41 Tests/CryptoSwiftTests/AESTests.swift
+11 −1 Tests/CryptoSwiftTests/Access.swift
+23 −7 Tests/CryptoSwiftTests/ChaCha20Tests.swift
+0 −26 Tests/CryptoSwiftTests/CommonCryptoTests.swift
+89 −49 Tests/CryptoSwiftTests/DigestTests.swift
+32 −58 Tests/CryptoSwiftTests/ExtensionsTest.swift
+0 −19 Tests/CryptoSwiftTests/Helpers.swift
+25 −4 Tests/CryptoSwiftTests/PBKDF.swift
+22 −8 Tests/CryptoSwiftTests/RabbitTests.swift
+24 −0 Tests/CryptoSwiftTests/RandomBytesSequenceTests.swift
+6 −5 Tests/LinuxMain.swift
+1 −1 scripts/CI.sh
2 changes: 1 addition & 1 deletion JSONWebToken.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ Pod::Spec.new do |spec|
spec.tvos.deployment_target = '9.0'
spec.watchos.deployment_target = '2.0'
spec.requires_arc = true
spec.dependency 'CryptoSwift', '~> 0.6.0'
spec.dependency 'CryptoSwift', '~> 0.6.1'
spec.module_name = 'JWT'
end
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import PackageDescription
let package = Package(
name: "JWT",
dependencies: [
.Package(url: "https://github.com/krzyzanowskim/CryptoSwift", versions: Version(0, 6, 0) ..< Version(0, 7, 0))
.Package(url: "https://github.com/krzyzanowskim/CryptoSwift", versions: Version(0, 6, 1) ..< Version(0, 7, 0))
]
)

0 comments on commit 1e3d591

Please sign in to comment.