public void InitEnc(byte[] key) { enc = new RC4(key); }
public void InitDec(byte[] key) { dec = new RC4(key); }