https://github.com/database64128/chacha8-go
ChaCha8 & ChaCha8-Poly1305 in Go, modified from the ChaCha20 & ChaCha20-Poly1305 implementations in `x/crypto` to use 8 rounds instead of 20.
https://github.com/database64128/chacha8-go
Last synced: about 1 year ago
JSON representation
ChaCha8 & ChaCha8-Poly1305 in Go, modified from the ChaCha20 & ChaCha20-Poly1305 implementations in `x/crypto` to use 8 rounds instead of 20.
- Host: GitHub
- URL: https://github.com/database64128/chacha8-go
- Owner: database64128
- License: bsd-3-clause
- Created: 2024-03-14T03:16:08.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-04T07:49:35.000Z (about 1 year ago)
- Last Synced: 2025-04-04T08:31:34.758Z (about 1 year ago)
- Language: Go
- Size: 366 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chacha8-go
ChaCha8 & ChaCha8-Poly1305 in Go, modified from the ChaCha20 & ChaCha20-Poly1305 implementations in `x/crypto` to use 8 rounds instead of 20.
Currently only the generic implementation is guaranteed to be correct. All assembly implementations are best-effort and may not be correct.
## License
The code is derived from `x/crypto` and thus is licensed under the same terms as `x/crypto`. See [LICENSE](LICENSE) for more information.