- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDBTransitEncryption.podspec
More file actions
Latest commit
18 lines (16 loc) · 963 Bytes
/
Copy pathDBTransitEncryption.podspec
File metadata and controls
18 lines (16 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.newdo |s|
s.name="DBTransitEncryption"
s.version="0.1.7"
s.summary="Encryption for data in transit; DBTransitEncryption will secure data for transit similar to the handshake protocol of TLS."
s.description=<<-DESC
Transport Layer Security for securing data payloads in Objective-C. An easy way to secure data by providing a symmetric key for that transaction. Keys are generated on the fly and every message will have a new key.
DESC
s.homepage="https://github.com/DavidBenko/DBTransitEncryption"
s.license='MIT'
s.author={"David Benko"=>"dbenko@prndl.us"}
s.source={:git=>"https://github.com/DavidBenko/DBTransitEncryption.git",:tag=>s.version.to_s}
s.social_media_url='https://twitter.com/davidwbenko'
s.platform=:ios
s.requires_arc=true
s.source_files='DBTransitEncryption/**/*.{h,m}'
end