-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSaltChannel.podspec
35 lines (27 loc) · 1.43 KB
/
SaltChannel.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Pod::Spec.new do |s|
s.name = 'SaltChannel'
s.version = '2.1.1'
s.summary = 'A light-weight secure channel protocol based on TweetNaCl.'
s.description = <<-DESC
This repo contains the Swift implementation of
Salt Channel - a simple, light-weight secure channel protocol based on TweetNaCl
by Bernstein et al. Salt Channel is "Powered by Curve25519".
Salt Channel is simpler than TLS and works well on small embedded processors.
It has a low handshake overhead. Salt Channel always uses
mutual authentication and forward secrecy. The protocol supports secret client IDs.
The development of the code in this repository and the protocol itself has been
financed by ASSA ABLOY AB -- the global leader in door opening solutions.
Thank you for supporting this work.
DESC
s.homepage = 'https://github.com/assaabloy-ppi/salt-channel/blob/master/files/spec/salt-channel-v2-final2.md'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'kpernyer' => '[email protected]',
'TheHawkis' => '[email protected]' }
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.13'
s.source = { :git => 'https://github.com/assaabloy-ppi/salt-channel-swift.git', :tag => s.version.to_s }
s.source_files = 'Sources/*.{swift,h}'
s.public_header_files = "Sources/SaltChannel.h"
s.dependency 'Sodium', '~> 0.8'
s.swift_version = '4.0'
end