Files
shadowsocks-iOS/ShadowWeb/table.h
2013-06-05 00:04:20 +08:00

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;