Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cuhsat/spritz.go
A Spritz cipher implementation in pure Go.
https://github.com/cuhsat/spritz.go
algorithm cryptography go golang spritz
Last synced: 16 days ago
JSON representation
A Spritz cipher implementation in pure Go.
- Host: GitHub
- URL: https://github.com/cuhsat/spritz.go
- Owner: cuhsat
- License: mit
- Created: 2023-02-04T13:50:12.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-20T17:16:02.000Z (almost 2 years ago)
- Last Synced: 2024-06-21T11:02:40.313Z (6 months ago)
- Topics: algorithm, cryptography, go, golang, spritz
- Language: Go
- Homepage:
- Size: 441 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# spritz.go
A Spritz cipher implementation in pure Go.Spritz is a RC4 redesign by *Ron Rivest* and *Jacob Schuldt*
[(PDF)](docs/RS14.pdf).# Exports
* `Spritz.Encrypt(message, key []byte)`
* `Spritz.Decrypt(message, key []byte)`
* `Spritz.Hash(message, digest []byte)`# License
Release into the [Public Domain](LICENSE.txt).