View Single Post
  #242  
Old 01-09-2015, 02:44 AM
denobis denobis is offline
Senior Member
 
Join Date: Sep 2013
Posts: 568
denobis is on a distinguished road
Default

Re: Atresdownloader - WWE Network support?


in php you need to perform something like

$decryptedts = mcrypt_cbc(MCRYPT_RIJNDAEL_128, $key, $ts, MCRYPT_DECRYPT, $iv);

or with openssl

openssl aes-128-cbc -d -in ts.ts -out tsdecrypted.ts -p-nosalt -iv ${hexIV} -K ${hexKey}
Reply With Quote