[Add] ZJSDK 2.5.8.16
[CocoaPods.git] / Specs / 7 / a / 8 / QuickRSA / 0.0.1 / QuickRSA.podspec.json
blob5a3ed26e8886fed5ac1e7bc89c265acab1c67c19
2   "name": "QuickRSA",
3   "version": "0.0.1",
4   "summary": "RSA Encrypt and Decrypt lib for iOS (Using Security.framework and OpenSSL)",
5   "description": "1. Run script of gen_rsa_key.sh to generate RSA keys\n2. Create a RSA SecKeyRef from data\n3. RSA Enc/Dec/Sign/Verify with SecKeyRef\n4. RSA Enc/Dec with OpenSSL\n5. Format conversion of PEM and DER",
6   "homepage": "https://github.com/liuyuning/QuickRSA",
7   "screenshots": "https://raw.githubusercontent.com/liuyuning/QuickRSA/master/ScreenShotDemo.png",
8   "license": {
9     "type": "MIT",
10     "file": "LICENSE.txt"
11   },
12   "authors": {
13     "liuyuning": "115709874@qq.com"
14   },
15   "social_media_url": "https://twitter.com/liuyuning",
16   "platforms": {
17     "ios": "8.0"
18   },
19   "source": {
20     "git": "https://github.com/liuyuning/QuickRSA.git",
21     "tag": "0.0.1"
22   },
23   "source_files": [
24     "Classes",
25     "QuickRSA/**/*.{h,m}"
26   ],
27   "public_header_files": "QuickRSA/**/*.h",
28   "subspecs": [
29     {
30       "name": "Static",
31       "source_files": "third-party/OpenSSL/include/openssl/**/*.h",
32       "public_header_files": "third-party/OpenSSL/include/openssl/**/*.h",
33       "header_dir": "openssl",
34       "xcconfig": {
35         "HEADER_SEARCH_PATHS": "/Users/liuyuning/Desktop/GitHub/QuickRSA/third-party/OpenSSL/include"
36       },
37       "vendored_libraries": [
38         "third-party/OpenSSL/lib/libcrypto.a",
39         "third-party/OpenSSL/lib/libssl.a"
40       ]
41     }
42   ]