added wrapper.c

This commit is contained in:
wangyu-
2017-09-18 06:34:03 -05:00
parent 3cdac6d95c
commit fb54df66e4
6 changed files with 106 additions and 2 deletions

View File

@@ -32,4 +32,10 @@ extern cipher_mode_t cipher_mode;
extern unordered_map<int, const char *> auth_mode_tostring;
extern unordered_map<int, const char *> cipher_mode_tostring;
int cipher_decrypt(const char *data,char *output,int &len,char * key);
int cipher_encrypt(const char *data,char *output,int &len,char * key);
#endif