CryptoSwift.podspec 1.0 KB

123456789101112131415161718192021
  1. Pod::Spec.new do |s|
  2. s.name = "CryptoSwift"
  3. s.version = "0.2.3"
  4. s.summary = "Cryptography in Swift. SHA, MD5, CRC, Poly1305, HMAC, ChaCha20, Rabbit, AES."
  5. s.description = "Cryptography functions and helpers for Swift implemented in Swift. SHA, MD5, CRC, Poly1305, HMAC, ChaCha20, Rabbit, 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.watchos.platform = :watchos, '2.0'
  16. s.watchos.deployment_target = "2.0"
  17. s.tvos.platform = :tvos, '9.0'
  18. s.tvos.deployment_target = "9.0"
  19. s.source_files = "Sources/CryptoSwift/**/*.swift"
  20. s.requires_arc = true
  21. end