RNCryptor.podspec 626 B

1234567891011121314
  1. Pod::Spec.new do |s|
  2. s.name = 'RNCryptor'
  3. s.version = '4.0.0-beta.1'
  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 => "v#{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 = 'RNCryptor.swift', 'RNCryptor.h'
  12. s.ios.deployment_target = '8.0'
  13. s.osx.deployment_target = '10.9'
  14. end