passepartout-apple/Podfile
Davide De Rosa e1463df931 Fix again PKCS#8 keys handling via TunnelKit
Wouldn't consider them encrypted thus not raising the passphrase
input.

Fixes #43
2019-04-02 11:42:55 +02:00

27 lines
701 B
Ruby

source 'https://github.com/cocoapods/specs.git'
platform :ios, '11.0'
use_frameworks!
def shared_pods
#pod 'TunnelKit', '~> 1.5.0'
#pod 'TunnelKit/LZO', '~> 1.5.0'
pod 'TunnelKit', :git => 'https://github.com/keeshux/tunnelkit', :commit => '11fd418'
pod 'TunnelKit/LZO', :git => 'https://github.com/keeshux/tunnelkit', :commit => '11fd418'
#pod 'TunnelKit', :path => '../../personal/tunnelkit'
#pod 'TunnelKit/LZO', :path => '../../personal/tunnelkit'
end
target 'Passepartout-Core' do
shared_pods
end
target 'Passepartout-CoreTests' do
shared_pods
end
target 'Passepartout-iOS' do
pod 'MBProgressHUD'
end
target 'Passepartout-iOS-Tunnel' do
shared_pods
end