https://github.com/strazzere/signed-proto
Simplistic data signing and verification using a small protobuf
https://github.com/strazzere/signed-proto
Last synced: 9 months ago
JSON representation
Simplistic data signing and verification using a small protobuf
- Host: GitHub
- URL: https://github.com/strazzere/signed-proto
- Owner: strazzere
- Created: 2023-11-07T23:42:43.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-07T23:43:44.000Z (about 2 years ago)
- Last Synced: 2025-02-09T22:41:14.875Z (11 months ago)
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# signed-proto - Data Signing and Verification
This is a simple command-line tool written in Go that facilitates data signing and verification using RSA encryption. The tool leverages Protocol Buffers for message structure serialization. It accepts private and public key files, along with a file containing the data buffer to be signed or verified.
# Re-generating protobuf
```
protoc --go_out=lib/ proto/signed.proto
```
## Example command usage
```
go build cmd/sproto.go
./sproto -sign -privateKey -buffer
./sproto -verify -publicKey -buffer
```
# License
```
Copyright 2022-23 Tim 'diff' Strazzere
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```