{"id":20279346,"url":"https://github.com/simplito/privmx-endpoint-swift","last_synced_at":"2026-06-18T00:31:53.184Z","repository":{"id":251720308,"uuid":"835288019","full_name":"simplito/privmx-endpoint-swift","owner":"simplito","description":"Swift wrapper for the native C++ library used by PrivMX to handle end-to-end encryption.","archived":false,"fork":false,"pushed_at":"2026-04-27T11:01:11.000Z","size":457,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-04-27T13:03:50.239Z","etag":null,"topics":["chat","communication","cryptography","data-transfer","decryption","e2ee","end-to-end-encryption","files","messaging","privacy","privacy-protection","private","privmx","secure","simplito","storage","swift","thread","zero-knowledge"],"latest_commit_sha":null,"homepage":"https://privmx.dev","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simplito.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-07-29T14:27:35.000Z","updated_at":"2025-12-05T19:18:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"2d386a79-ea1c-414f-9693-558f17cb25d8","html_url":"https://github.com/simplito/privmx-endpoint-swift","commit_stats":null,"previous_names":["simplito/privmx-endpoint-swift"],"tags_count":34,"template":false,"template_full_name":null,"purl":"pkg:github/simplito/privmx-endpoint-swift","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplito%2Fprivmx-endpoint-swift","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplito%2Fprivmx-endpoint-swift/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplito%2Fprivmx-endpoint-swift/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplito%2Fprivmx-endpoint-swift/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simplito","download_url":"https://codeload.github.com/simplito/privmx-endpoint-swift/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplito%2Fprivmx-endpoint-swift/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34471638,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-17T02:00:05.408Z","response_time":127,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chat","communication","cryptography","data-transfer","decryption","e2ee","end-to-end-encryption","files","messaging","privacy","privacy-protection","private","privmx","secure","simplito","storage","swift","thread","zero-knowledge"],"created_at":"2024-11-14T13:29:34.620Z","updated_at":"2026-06-18T00:31:53.158Z","avatar_url":"https://github.com/simplito.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PrivMX Endpoint Swift\n\nThis repository provides a Swift wrapper for the native C++ library used by PrivMX to handle end-to-end (e2e) encryption. PrivMX is a privacy-focused platform designed to offer secure collaboration solutions by integrating robust encryption across various data types and communication methods. This project enables seamless integration of PrivMX’s encryption functionalities in Swift applications, preserving the security and performance of the original C++ library while making its capabilities accessible in the Swift ecosystem.\n\n## About PrivMX\n\n[PrivMX](https://privmx.dev) allows developers to build end-to-end encrypted apps used for communication. The Platform works according to privacy-by-design mindset, so all of our solutions are based on Zero-Knowledge architecture. This project extends PrivMX’s commitment to security by making its encryption features accessible to developers using Swift.\n\n## Key Features\n\n- End-to-End Encryption: Ensures that data is encrypted at the source and can only be decrypted by the intended recipient.\n- Native C++ Library Integration: Leverages the performance and security of C++ while making it accessible in Swift applications.\n- Cross-Platform Compatibility: Designed to support PrivMX on multiple operating systems and environments.\n- Simple API: Easy-to-use interface for Swift developers without compromising security.\n\n## Modules\n\nPrivMX Endpoint Swift is a streamlined wrapper library that introduces C++ error handling to Swift, tailored specifically for the PrivMX Platform.\n\nThe library is organized into two primary targets:\n\n- **`PrivMXEndpointSwiftNative`**: This target manages exception handling on the C++ side of the library.\n- **`PrivMXEndpointSwift`**: This target offers Swift-based exception handling, encompassing Swift classes and throwing methods.\n\nThis Package implements models, exception catching, and the following modules:\n\n- `CryptoApi` - Cryptographic methods used to encrypt/decrypt and sign your data or generate keys to\n  work with PrivMX Bridge.\n- `Connection` - Methods for managing connection with PrivMX Bridge.\n- `ThreadApi` - Methods for managing Threads and sending/reading messages.\n- `StoreApi` - Methods for managing Stores and sending/reading files.\n- `InboxApi` - Methods for managing Inboxes and entries.\n\n## Dependency setup\n\nTo use this package, add it as a dependency in your Xcode project or in your `Package.swift` file.\n\n### Xcode Integration\n\nIn Xcode, navigate to your Project Navigator, right-click, and select **Add Package Dependencies...**. Then, paste the following URL into the **Search or Enter Package URL** field:\n\n```\nhttps://github.com/simplito/privmx-endpoint-swift\n```\n\n### Swift Package Manager\n\nTo add it directly to a Swift package, include this line in the `dependencies` array in your `Package.swift` file:\n\n```swift\n.package(\n    url: \"https://github.com/simplito/privmx-endpoint-swift\",\n    .upToNextMajor(from: .init(2, 0, 0))\n),\n```\n\n## Usage\n\nFor more details on PrivMX Platform, including setup guides and API reference, visit [PrivMX documentation](https://docs.privmx.dev).\n\n\n## License information\n\n**PrivMX Endpoint Swift**\nCopyright © 2024 Simplito sp. z o.o.\n\nThis project is part of the PrivMX Platform (https://privmx.dev).\nThis software is Licensed under the MIT License.\n\nPrivMX Endpoint and PrivMX Bridge are licensed under the [PrivMX Free License](https://github.com/simplito/privmx-endpoint).\nSee the License for the specific language governing permissions and limitations.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplito%2Fprivmx-endpoint-swift","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimplito%2Fprivmx-endpoint-swift","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplito%2Fprivmx-endpoint-swift/lists"}