Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chenchenwuai/znu-rc4

rc4 encryption
https://github.com/chenchenwuai/znu-rc4

rc4 rc4-algorithm rc4-encryption

Last synced: about 1 month ago
JSON representation

rc4 encryption

Awesome Lists containing this project

README

        

## znu-rc4

🚀 a sample rc4 class 🌈

## 使用

``` javascript
import RC4 from './znu-rc4';
const rc4 = new RC4('key');
const a = [1,2,3,4]
const b = rc4.crypt(a)
```