CryptoSwift.podspec 1.1 KB

1234567891011121314151617181920
  1. Pod::Spec.new do |s|
  2. s.name = "CryptoSwift"
  3. s.version = "1.9.0"
  4. s.source = { :git => "https://github.com/krzyzanowskim/CryptoSwift.git", :tag => "#{s.version}" }
  5. s.summary = "Cryptography in Swift. SHA, MD5, CRC, PBKDF, Poly1305, HMAC, CMAC, HDKF, Scrypt, ChaCha20, Rabbit, Blowfish, AES, RSA."
  6. s.description = "Cryptography functions and helpers for Swift implemented in Swift. SHA-1, SHA-2, SHA-3, MD5, PBKDF1, PBKDF2, Scrypt, CRC, Poly1305, HMAC, ChaCha20, Rabbit, Blowfish, AES, RSA"
  7. s.homepage = "https://github.com/krzyzanowskim/CryptoSwift"
  8. s.license = {:type => "Attribution", :file => "LICENSE"}
  9. s.authors = {'Marcin Krzyżanowski' => 'marcin@krzyzanowskim.com'}
  10. s.social_media_url = "https://x.com/krzyzanowskim"
  11. s.cocoapods_version = '>= 1.10.0'
  12. s.swift_version = "5.6"
  13. s.ios.deployment_target = "11.0"
  14. s.osx.deployment_target = "10.13"
  15. s.watchos.deployment_target = "4.0"
  16. s.tvos.deployment_target = "11.0"
  17. s.source_files = "Sources/CryptoSwift/**/*.swift"
  18. s.requires_arc = true
  19. s.resource_bundles = {'CryptoSwift' => ['Sources/CryptoSwift/PrivacyInfo.xcprivacy']}
  20. end