mirror of
https://github.com/zhigang1992/shadowsocks-iOS.git
synced 2026-04-10 22:49:44 +08:00
12 lines
237 B
C
12 lines
237 B
C
#pragma once
|
|
|
|
|
|
unsigned char encrypt_table[256];
|
|
unsigned char decrypt_table[256];
|
|
void get_table(const char* key);
|
|
void table_encrypt(char *buf, int len);
|
|
void table_decrypt(char *buf, int len);
|
|
|
|
unsigned int _i;
|
|
unsigned long long _a;
|