CryptoSwift.podspec 894 B

1234567891011121314151617
  1. Pod::Spec.new do |s|
  2. s.name = "CryptoSwift"
  3. s.version = "0.0.13"
  4. s.summary = "Cryptography in Swift. SHA, MD5, CRC, Poly1305, HMAC, ChaCha20, AES."
  5. s.description = "Cryptography functions and helpers for Swift implemented in Swift. SHA, MD5, CRC, Poly1305, HMAC, ChaCha20, AES."
  6. s.homepage = "https://github.com/krzyzanowskim/CryptoSwift"
  7. s.license = {:type => "Attribution License", :file => "LICENSE"}
  8. s.source = { :git => "https://github.com/krzyzanowskim/CryptoSwift.git", :tag => "#{s.version}" }
  9. s.authors = {'Marcin Krzyżanowski' => 'marcin.krzyzanowski@hakore.com'}
  10. s.social_media_url = "https://twitter.com/krzyzanowskim"
  11. s.ios.platform = :ios, '8.0'
  12. s.ios.deployment_target = "8.0"
  13. s.osx.platform = :osx, '10.9'
  14. s.osx.deployment_target = "10.9"
  15. s.source_files = "CryptoSwift/*.swift"
  16. s.requires_arc = true
  17. end