Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lorenzofelletti/streamcipherrc4
https://github.com/lorenzofelletti/streamcipherrc4
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/lorenzofelletti/streamcipherrc4
- Owner: lorenzofelletti
- License: mit
- Created: 2021-01-17T23:46:43.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-01T19:11:48.000Z (almost 4 years ago)
- Last Synced: 2023-04-08T19:13:59.876Z (over 1 year ago)
- Language: Java
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# StreamCipherRC4
Implements the RC4 algorithm and define two entities - sender & receiver - that can send/receive messages
encrypted using RC4.Sender and receiver shares a seed at the beginning, then used to generate (with Java SecureRandom) a new key for each message.
⚠️⚠️⚠️Note⚠️⚠️⚠️
This repository is made for learning purposes ONLY.
DO NOT be use it in production software.