Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 23 days 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 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-11T10:16:59.000Z (almost 3 years ago)
- Last Synced: 2024-05-01T14:19:40.508Z (6 months ago)
- Language: Dart
- Homepage:
- Size: 145 KB
- Stars: 2
- Watchers: 2
- 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
```