<?php function hexbin($temp) { $data=""; $len = strlen($temp); for ($i=0;$i<$len;$i+=2) $data.=chr(hexdec(substr($temp,$i,2))); return $data; } var_dump( sha1(hexbin(base64_encode('4ly5ccc64ln8n581.0.1I0110DQXmy_first_test__559status'))) );
You have javascript disabled. You will not be able to edit any code.