https://github.com/simplito/privmx-endpoint-drv-ecc-openssl
Implementation of the interface for elliptic-curve cryptography for PrivMX Endpoint.
https://github.com/simplito/privmx-endpoint-drv-ecc-openssl
end-to-end-encryption privacy privmx zero-knowledge
Last synced: about 1 month ago
JSON representation
Implementation of the interface for elliptic-curve cryptography for PrivMX Endpoint.
- Host: GitHub
- URL: https://github.com/simplito/privmx-endpoint-drv-ecc-openssl
- Owner: simplito
- License: other
- Created: 2024-10-25T12:18:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-05T09:06:12.000Z (over 1 year ago)
- Last Synced: 2025-03-04T02:39:49.355Z (over 1 year ago)
- Topics: end-to-end-encryption, privacy, privmx, zero-knowledge
- Language: C++
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
## PrivMX Endpoint ECC Driver
Driver module library used as a dependency in the PrivMX Endpoint library.
It provides the implementation of the interface for the elliptic-curve cryptography.
## 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
```