so I encrypted a string on my php server.
encrypt("http://google.com", "happy");
function encrypt($str, $key)
{
$block = mcrypt_get_block_size('des', 'ecb');
$pad = $block - (strlen($str) % $block);
$str .= str_repeat(chr($pad), $pad);
return mcrypt_encrypt(MCRYPT_DES, $key, $str, MCRYPT_MODE_ECB);
}
btw, this returns some weird string...I was expecting letters and numbers:
ZöÞ ÔP»8
Back on Java, I need to decrypt this string with the key.