Skip to content

Commit

Permalink
Update to CryptoSwift 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kylef committed May 16, 2016
1 parent 1600072 commit 52c6978
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: objective-c
osx_image: xcode7.2
osx_image: xcode7.3
script:
- set -o pipefail
- git submodule update --init --recursive
Expand Down
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "krzyzanowskim/CryptoSwift" ~> 0.2.2
github "krzyzanowskim/CryptoSwift" ~> 0.4.0
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "krzyzanowskim/CryptoSwift" "0.2.3"
github "krzyzanowskim/CryptoSwift" "0.4.0"
2 changes: 1 addition & 1 deletion Carthage/Checkouts/CryptoSwift
Submodule CryptoSwift updated 48 files
+22 −0 CHANGELOG
+3 −3 CryptoSwift.podspec
+190 −50 CryptoSwift.xcodeproj/project.pbxproj
+77 −34 CryptoSwiftTests/AESTests.swift
+3 −4 CryptoSwiftTests/ChaCha20Tests.swift
+9 −2 CryptoSwiftTests/ExtensionsTest.swift
+29 −0 CryptoSwiftTests/PBKDF2Tests.swift
+3 −3 CryptoSwiftTests/PaddingTests.swift
+62 −39 README.md
+53 −41 Sources/CryptoSwift/AES.swift
+2 −2 Sources/CryptoSwift/Array+Extension.swift
+0 −42 Sources/CryptoSwift/ArraySliceUInt8+Bytes.swift
+2 −2 Sources/CryptoSwift/Authenticator.swift
+18 −0 Sources/CryptoSwift/Bit.swift
+0 −17 Sources/CryptoSwift/BitExtension.swift
+11 −0 Sources/CryptoSwift/BlockCipher.swift
+19 −0 Sources/CryptoSwift/BlockMode/BlockModeGenerator.swift
+15 −0 Sources/CryptoSwift/BlockMode/BlockModeOptions.swift
+64 −0 Sources/CryptoSwift/BlockMode/CBC.swift
+64 −0 Sources/CryptoSwift/BlockMode/CFB.swift
+78 −0 Sources/CryptoSwift/BlockMode/CTR.swift
+92 −0 Sources/CryptoSwift/BlockMode/CipherBlockMode.swift
+36 −0 Sources/CryptoSwift/BlockMode/ECB.swift
+64 −0 Sources/CryptoSwift/BlockMode/OFB.swift
+64 −0 Sources/CryptoSwift/BlockMode/PCBC.swift
+1 −10 Sources/CryptoSwift/BytesSequence.swift
+5 −4 Sources/CryptoSwift/CSArrayType+Extensions.swift
+2 −2 Sources/CryptoSwift/ChaCha20.swift
+0 −240 Sources/CryptoSwift/CipherBlockMode.swift
+3 −3 Sources/CryptoSwift/CipherProtocol.swift
+2 −2 Sources/CryptoSwift/Foundation/AES+Foundation.swift
+29 −0 Sources/CryptoSwift/Foundation/CSArrayType+Foundation.swift
+2 −2 Sources/CryptoSwift/Foundation/NSData+Extension.swift
+20 −7 Sources/CryptoSwift/Foundation/String+FoundationExtension.swift
+3 −9 Sources/CryptoSwift/HMAC.swift
+2 −2 Sources/CryptoSwift/HashProtocol.swift
+1 −1 Sources/CryptoSwift/Info.plist
+17 −0 Sources/CryptoSwift/NoPadding.swift
+0 −50 Sources/CryptoSwift/PKCS5.swift
+92 −0 Sources/CryptoSwift/PKCS5/PBKDF2.swift
+15 −0 Sources/CryptoSwift/PKCS5/PKCS5.swift
+5 −1 Sources/CryptoSwift/PKCS7.swift
+19 −25 Sources/CryptoSwift/Poly1305.swift
+18 −11 Sources/CryptoSwift/Rabbit.swift
+7 −2 Sources/CryptoSwift/SHA2.swift
+39 −0 Sources/CryptoSwift/SecureBytes.swift
+2 −2 Sources/CryptoSwift/String+Extension.swift
+0 −30 build-frameworks.sh
2 changes: 1 addition & 1 deletion JSONWebToken.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ Pod::Spec.new do |spec|
spec.osx.deployment_target = '10.9'
spec.tvos.deployment_target = '9.0'
spec.requires_arc = true
spec.dependency 'CryptoSwift', '~> 0.2.2'
spec.dependency 'CryptoSwift', '~> 0.4.0'
spec.module_name = 'JWT'
end

0 comments on commit 52c6978

Please sign in to comment.