Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/chenchenwuai/znu-rc4
- Owner: chenchenwuai
- License: mit
- Created: 2020-07-15T07:50:38.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-24T23:00:38.000Z (over 2 years ago)
- Last Synced: 2023-03-06T16:42:28.848Z (almost 2 years ago)
- Topics: rc4, rc4-algorithm, rc4-encryption
- Language: JavaScript
- Homepage:
- Size: 1.16 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```