Feature Request
-
First off thanks for this very useful plugin, I have been using the following code modification to public.php in your encode/decode functions to prevent automatic base64 link decoding I was hoping that you could incorporate this in to your options panel as I think it is a worthy addition to your code:
$salt ='00000000000SECRET-KEY00000000000'; // <--- This is your secret key 32 Chars //$url = base64_encode( $url ); // <--- This is your existing code $url=trim(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $salt, $url, MCRYPT_MODE_ECB, mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB), MCRYPT_RAND)))); // <--- This is new code
One problem I have come across is encoding/decoding magnet links, Would it be possible to add the option to exclude magnet:?xt=urn:btih: links?
Thanks again
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Feature Request’ is closed to new replies.