Skip to content

Commit

Permalink
Merge pull request #10 from VirgilSecurity/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Ogerets authored Jul 8, 2019
2 parents 1de6e88 + 70003ce commit 866180e
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ script:
# Build with carthage
- if [ $PUBLISH_CARTHAGE == "YES" ]; then
brew update && brew upgrade carthage;
brew outdated || brew upgrade carthage;
carthage build --no-skip-current;
carthage archive;
fi
Expand Down
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "VirgilSecurity/virgil-sdk-x" ~> 5.7
github "VirgilSecurity/virgil-crypto-x" ~> 5.0.0-alpha2
github "VirgilSecurity/virgil-crypto-x" ~> 5.0.0-alpha5
10 changes: 5 additions & 5 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github "VirgilSecurity/virgil-crypto-c" "v0.6.0"
github "VirgilSecurity/virgil-crypto-x" "5.0.0-alpha2"
github "VirgilSecurity/virgil-cryptoapi-x" "1.0.5"
github "VirgilSecurity/virgil-cryptowrapper-x" "0.6.0"
github "VirgilSecurity/virgil-sdk-x" "5.7.2"
github "VirgilSecurity/virgil-crypto-c" "v0.8.0"
github "VirgilSecurity/virgil-crypto-x" "5.0.0-alpha5"
github "VirgilSecurity/virgil-cryptoapi-x" "1.0.6"
github "VirgilSecurity/virgil-cryptowrapper-x" "0.8.0"
github "VirgilSecurity/virgil-sdk-x" "5.8.0"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ To integrate Virgil Keyknox into your Xcode project using CocoaPods, specify it
target '<Your Target Name>' do
use_frameworks!

pod 'VirgilSDKKeyknox', '~> 0.4.1'
pod 'VirgilSDKKeyknox', '~> 0.4.2'
end
```

Expand All @@ -71,7 +71,7 @@ $ brew install carthage
To integrate Virgil Keyknox into your Xcode project using Carthage, create an empty file with name *Cartfile* in your project's root folder and add following lines to your *Cartfile*

```
github "VirgilSecurity/virgil-keyknox-x" ~> 0.4.1
github "VirgilSecurity/virgil-keyknox-x" ~> 0.4.2
```

#### Linking against prebuilt binaries
Expand Down
2 changes: 1 addition & 1 deletion Source/Crypto/KeyknoxCrypto.swift
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ extension KeyknoxCrypto: KeyknoxCryptoProtocol {
cipher.setRandom(random: self.crypto.rng)

publicKeys.forEach {
cipher.addKeyRecipient(recipientId: $0.identifier, publicKey: $0.publicKey)
cipher.addKeyRecipient(recipientId: $0.identifier, publicKey: $0.key)
}

cipher.customParams().addData(key: VirgilCrypto.CustomParamKeySignature, value: signature)
Expand Down
4 changes: 2 additions & 2 deletions VirgilSDKKeyknox.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "VirgilSDKKeyknox"
s.version = "0.4.1"
s.version = "0.4.2"
s.license = { :type => "BSD", :file => "LICENSE" }
s.summary = "Virgil Keyknox SDK for Apple devices and languages."
s.homepage = "https://github.com/VirgilSecurity/virgil-keyknox-x/"
Expand All @@ -12,5 +12,5 @@ Pod::Spec.new do |s|
s.watchos.deployment_target = "2.0"
s.source_files = 'Source/**/*.{swift}'
s.dependency "VirgilSDK", "~> 5.7"
s.dependency "VirgilCrypto", "~> 5.0.0-alpha2"
s.dependency "VirgilCrypto", "~> 5.0.0-alpha5"
end
2 changes: 1 addition & 1 deletion VirgilSDKKeyknox/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.4.1</string>
<string>0.4.2</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down

0 comments on commit 866180e

Please sign in to comment.