a bunch of commit together,i lost some commit log while upgrading git

This commit is contained in:
wangyu
2017-07-26 06:29:40 +08:00
committed by wangyu
parent c6371c0ef5
commit 93c0d789c4
6 changed files with 591 additions and 345 deletions

View File

@@ -16,10 +16,9 @@ int my_decrypt_pesudo_header(uint8_t *data,uint8_t *output,int &len,uint8_t * ke
unsigned short csum(const unsigned short *ptr,int nbytes) ;
const int auth_none=0;
const int auth_md5=1;
enum auth_mode_t {auth_none=0,auth_md5,auth_crc32,auth_sum};
enum cipher_mode_t {cipher_none=0,cipher_aes128cbc,cipher_xor};
const int cipher_none=0;
const int cipher_aes128cbc=1;
#endif