-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHash.podspec
16 lines (16 loc) · 959 Bytes
/
Hash.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = 'Hash'
s.version = '1.5.0'
s.swift_version = '5.0'
s.summary = 'Lightweight means of generating message digests & HMACs with support for AES encryption / decryption.'
s.description = <<-DESC
Provides a convenient means of generating message digests / HMACs from Swift Strings or Data using popular hash functions including MD2, MD4, MD5, SHA-1, SHA224, SHA-256, SHA-384 or SHA-512. Also supports encryption and decryption using AES-128, AES-192 or AES-256.
DESC
s.homepage = 'https://github.com/rwbutler/Hash'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Ross Butler' => 'github@rwbutler.com' }
s.source = { :git => 'https://github.com/rwbutler/Hash.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ross_w_butler'
s.ios.deployment_target = '8.0'
s.source_files = 'Hash/Classes/**/*'
end