首頁  >  文章  >  後端開發  >  c#-php代码转C#代码,来个会PHP和C#的高手

c#-php代码转C#代码,来个会PHP和C#的高手

WBOY
WBOY原創
2016-06-02 11:34:171028瀏覽

phpc#

<code>public static function oath_hotp($key, $counter){   $bin_counter = pack('N*', 0) . pack('N*', $counter);     // Counter must be 64-bit int   $hash     = hash_hmac ('sha1', $bin_counter, $key, true);   return str_pad(self::oath_truncate($hash), self::otpLength, '0', STR_PAD_LEFT);}public static function oath_truncate($hash){   $offset = ord($hash[19]) & 0xf;   return (       ((ord($hash[$offset+0]) & 0x7f) </code>

self::otpLength是类中的一个变量

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn