Goufalite
Goufalite
In PHP 7, MCrypt is deprecated... A workaround is to use openssl_* instead : ``` function encrypt2($str) { $encrypted = openssl_encrypt($str, 'aes-128-cbc', KEY_SERVICE, OPENSSL_RAW_DATA, IV_SERVICE); return bin2hex($encrypted); } function decrypt2($code)...
I have to check something with the ZERO_PADDING option which messes with the result, then I'll make the pull request
Look at the code tab on top, there's a Java MCrypt class. I still have some leading NULL characters at the beginning so some trim might be in order to...
What were the results?
By watching the network on mydlink.com sometimes there's `v2` sometimes there's `me`. I don't see any websocket communication in the network view of chrome...