Commit ca0ab15e by Fear1ess

4/25

parent 53868a5b
...@@ -105,7 +105,7 @@ void decrpyt_buf(char*m_key,char*m_iv, char *raw_buf, char **encrpy_buf, int len ...@@ -105,7 +105,7 @@ void decrpyt_buf(char*m_key,char*m_iv, char *raw_buf, char **encrpy_buf, int len
AES_KEY aes; AES_KEY aes;
unsigned char key[17] = {0}; unsigned char key[17] = {0};
// unsigned char iv[] = "1234567890123457"; // unsigned char iv[] = "1234567890123457";
unsigned char iv[]={0}; unsigned char iv[17]={0};
memcpy(key,m_key,0x10); memcpy(key,m_key,0x10);
memcpy(iv,m_iv,0x10); memcpy(iv,m_iv,0x10);
// LOGV("m_key= %s",key); // 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