Iceman's script aes fix #93

Thanks Iceman (note I did not have a tag to double test this one. :)
This commit is contained in:
marshmellow42 2015-04-28 15:53:07 -04:00
parent e9b8d0dd6e
commit bdfb62b405

View file

@ -261,7 +261,7 @@ static int l_aes(lua_State *L)
aes_context ctx;
aes_init(&ctx);
aes_setkey_enc(&ctx,(const unsigned char *)p_key,128);
aes_setkey_dec(&ctx, aes_key, 128);
aes_crypt_cbc(&ctx,AES_DECRYPT,sizeof(indata), iv, indata,outdata );
//Push decrypted array as a string
lua_pushlstring(L,(const char *)&outdata, sizeof(outdata));