https://github.com/simplito/privmx-endpoint-drv-crypto-openssl
Implementation of the interface for the base cryptographic functions for PrivMX Endpoint.
https://github.com/simplito/privmx-endpoint-drv-crypto-openssl
communication end-to-end-encryption privacy privmx secure zero-knowledge
Last synced: 8 days ago
JSON representation
Implementation of the interface for the base cryptographic functions for PrivMX Endpoint.
- Host: GitHub
- URL: https://github.com/simplito/privmx-endpoint-drv-crypto-openssl
- Owner: simplito
- License: other
- Created: 2024-10-25T12:17:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-06-05T09:01:55.000Z (14 days ago)
- Last Synced: 2026-06-06T12:32:46.692Z (13 days ago)
- Topics: communication, end-to-end-encryption, privacy, privmx, secure, zero-knowledge
- Language: C++
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
## PrivMX Endpoint Crypto Driver
Driver module library used as a dependency in the PrivMX Endpoint library.
It provides the implementation of the interface for the base cryptographic functions.
## Releasing
The current release process is managed from the `main` branch. To create a release, create a version tag in the `vX.Y.Z` format on `main`, push the tag to the remote repository, and then create a GitHub Release from the GitHub UI based on that tag. The changelog should also be generated from the GitHub Release UI.
Example Git commands:
```bash
git checkout main
git pull origin main
git tag vX.Y.Z
git push origin vX.Y.Z
```