Home
last modified time | relevance | path

Searched refs:ourSubstr (Results 1 – 1 of 1) sorted by relevance

/plugin/sha3sum/
H A DSha3.php130 $t = unpack('V*', self::ourSubstr($in_raw, $i * 8 + $in_t, 8));
141 $temp = self::ourSubstr($in_raw, $in_t, $inlen);
148 $t = unpack('V*', self::ourSubstr($temp, $i * 8, 8));
162 $r = self::ourSubstr($out, 0, $outputlength / 8);
270 $t = unpack('v*', self::ourSubstr($in_raw, $i * 8 + $in_t, 8));
283 $temp = self::ourSubstr($in_raw, $in_t, $inlen);
290 $t = unpack('v*', self::ourSubstr($temp, $i * 8, 8));
306 $r = self::ourSubstr($out, 0, $outputlength / 8);
405 private static function ourSubstr($str, $start = 0, $length = null) function in Sha3