[Add] jionews-shortssdk-cocoapod 2.1.5
[CocoaPods.git] / Specs / a / 9 / 2 / nuntius / 0.0.7 / nuntius.podspec.json
blobace29b93852ad852f8b196f3814fdec947e1c033
2   "name": "nuntius",
3   "version": "0.0.7",
4   "summary": "iOS Framework for end-to-end encrypted messages",
5   "description": "nuntius is an iOS framework that helps iOS developers integrate end-to-end encryption (e2ee) into their apps with simple APIs.\nIt provides an objc implementation of the Extended Triple Diffie-Hellman (X3DH) and Double Ratchet protocols using libsodium for most of the crypto operations.\nnuntius provides Authenticated Encryption with Associated Data (AEAD) via AES-CBC-HMAC-256, it uses Apple's CommonCrypto framework for this operations, but in the future I'll move to libsodium-only crypto and use ChaCha20-Poly1305 instead.",
6   "homepage": "https://github.com/ivRodriguezCA/nuntius",
7   "license": "MIT",
8   "authors": "Ivan E. Rodriguez",
9   "social_media_url": "http://twitter.com/ivRodriguezCA",
10   "source": {
11     "git": "https://github.com/ivRodriguezCA/nuntius.git",
12     "branch": "master",
13     "tag": "0.0.7"
14   },
15   "source_files": "nuntius/**/*.{h,m}",
16   "exclude_files": "nuntius/libsodium/**/*.{h,m}",
17   "platforms": {
18     "ios": null
19   },
20   "subspecs": [
21     {
22       "name": "libsodium",
23       "preserve_paths": [
24         "nuntius/libsodium/include/**/*.{h,m}",
25         "nuntius/libsodium/LICENSE"
26       ],
27       "vendored_libraries": "nuntius/libsodium/lib/libsodium.a",
28       "libraries": "sodium",
29       "xcconfig": {
30         "HEADER_SEARCH_PATHS": "${PODS_ROOT}/nuntius/nuntius/libsodium/include/**"
31       }
32     }
33   ]