https://github.com/robojones/endguard-dart
Dart implementation of Endguard, a reasonably secure end-to-end encryption scheme
https://github.com/robojones/endguard-dart
Last synced: 3 months ago
JSON representation
Dart implementation of Endguard, a reasonably secure end-to-end encryption scheme
- Host: GitHub
- URL: https://github.com/robojones/endguard-dart
- Owner: robojones
- License: mit
- Created: 2021-03-18T13:11:37.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-11T10:16:59.000Z (over 3 years ago)
- Last Synced: 2025-03-22T22:01:45.656Z (4 months ago)
- Language: Dart
- Homepage:
- Size: 145 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EndGuard
## Generate the protocol buffers
> **Required:** Docker
```bash
# make sure the protocol submodule is up to date
git submodule init
git submodule update# generate protocol buffer library files
docker run --rm -v=${PWD}:/project robojones/protoc-dart:latest protoc -I=protocol/protos --dart_out=lib/src/protos protocol/protos/protocol.proto
```