🚀 a sample rc4 class 🌈
import RC4 from './znu-rc4';
const rc4 = new RC4('key');
const a = [1,2,3,4]
const b = rc4.crypt(a)
rc4 encryption
🚀 a sample rc4 class 🌈
import RC4 from './znu-rc4';
const rc4 = new RC4('key');
const a = [1,2,3,4]
const b = rc4.crypt(a)