pub type RC4_KEY = rc4_key_st;
struct RC4_KEY { pub x: u32, pub y: u32, pub data: [u32; 256], }
x: u32
y: u32
data: [u32; 256]