RNCryptor.podspec 717 B

1234567891011121314151617
  1. Pod::Spec.new do |s|
  2. s.name = 'RNCryptor'
  3. s.version = '5.1.0'
  4. s.summary = 'Cross-language AES Encryptor/Decryptor data format.'
  5. s.authors = {'Rob Napier' => 'robnapier@gmail.com'}
  6. s.social_media_url = 'https://twitter.com/cocoaphony'
  7. s.license = 'MIT'
  8. s.source = { :git => 'https://github.com/rnapier/RNCryptor.git', :tag => "#{s.version.to_s}" }
  9. s.description = 'Implements a secure encryption format based on AES, PBKDF2, and HMAC.'
  10. s.homepage = 'https://github.com/rnapier/RNCryptor'
  11. s.source_files = 'Sources/RNCryptor/RNCryptor.swift'
  12. s.swift_version = '5.0'
  13. s.ios.deployment_target = '8.0'
  14. s.osx.deployment_target = '10.9'
  15. s.watchos.deployment_target = '2.0'
  16. s.tvos.deployment_target = '9.0'
  17. end