Commit 53868a5b by Fear1ess

4/25

parent 7a3bc78d
......@@ -90,7 +90,7 @@ void generateAESKeyIv(char *key,char*iv,char* key_Table){
void encrpyt_buf(char*m_key,char*m_iv, char *raw_buf, char **encrpy_buf, int len ) {
AES_KEY aes;
unsigned char key[17] = {0};
unsigned char iv[] = {0};
unsigned char iv[17] = {0};
memcpy(key,m_key,0x10);
memcpy(iv,m_iv,0x10);
// LOGV("m_key= %s",key);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment