This commit is contained in:
wangyu
2020-07-14 11:46:02 -04:00
parent 5cc304a261
commit e95ee70351
4 changed files with 35 additions and 5 deletions

View File

@@ -39,4 +39,6 @@ extern char gro_xor[256+100];
int cipher_decrypt(const char *data,char *output,int &len,char * key);//internal interface ,exposed for test only
int cipher_encrypt(const char *data,char *output,int &len,char * key);//internal interface ,exposed for test only
void aes_ecb_encrypt(const char *data,char *output);
void aes_ecb_decrypt(const char *data,char *output);
#endif