https://github.com/stariy95/rabbit-cipher-java
Rabbit Cipher java implementation
https://github.com/stariy95/rabbit-cipher-java
cipher cipher-algorithms encryption rabbit-cipher-java
Last synced: 4 months ago
JSON representation
Rabbit Cipher java implementation
- Host: GitHub
- URL: https://github.com/stariy95/rabbit-cipher-java
- Owner: stariy95
- Created: 2015-05-03T19:51:54.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-14T19:44:39.000Z (over 9 years ago)
- Last Synced: 2025-01-05T04:43:39.224Z (6 months ago)
- Topics: cipher, cipher-algorithms, encryption, rabbit-cipher-java
- Language: Java
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Rabbit stream cipher implementation http://tools.ietf.org/rfc/rfc4503.txt
> Rabbit is a stream cipher algorithm that has been designed for high
> performance in software implementations. Both key setup and
> encryption are very fast, making the algorithm particularly suited
> for all applications where large amounts of data or large numbers of
> data packages have to be encrypted.
Usage:
```java
byte[] msg = "Hello World!".getBytes();
RabbitCipher cipher = new RabbitCipher();
cipher.setupKey(key);
cipher.crypt(msg);
```Currently IV usage not implemented.