jiangping
2025-07-16 b0a7148f1830eb544af588e49a36163ee5820c7c
1
2
3
4
5
6
7
8
9
10
export declare class Arcfour {
    constructor();
    init(key: number[]): void;
    next(): number;
    private i;
    private j;
    private S;
}
export declare function prng_newstate(): Arcfour;
export declare let rng_psize: number;