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",
8 "authors": "Ivan E. Rodriguez",
9 "social_media_url": "http://twitter.com/ivRodriguezCA",
11 "git": "https://github.com/ivRodriguezCA/nuntius.git",
15 "source_files": "nuntius/**/*.{h,m}",
16 "exclude_files": "nuntius/libsodium/**/*.{h,m}",
24 "nuntius/libsodium/include/**/*.{h,m}",
25 "nuntius/libsodium/LICENSE"
27 "vendored_libraries": "nuntius/libsodium/lib/libsodium.a",
28 "libraries": "sodium",
30 "HEADER_SEARCH_PATHS": "${PODS_ROOT}/nuntius/nuntius/libsodium/include/**"