----------------------------------------------------------------------
($x)
| 2299 | |
| 2300 | //---------------------------------------------------------------------- |
| 2301 | public function modnn($x) |
| 2302 | { |
| 2303 | while ($x >= $this->nn) { |
| 2304 | $x -= $this->nn; |
| 2305 | $x = ($x >> $this->mm) + ($x & $this->nn); |
| 2306 | } |
| 2307 | |
| 2308 | return $x; |
| 2309 | } |
| 2310 | |
| 2311 | //---------------------------------------------------------------------- |
| 2312 | public static function init_rs_char($symsize, $gfpoly, $fcr, $prim, $nroots, $pad) |
no outgoing calls
no test coverage detected