n = $n; $this->e = $e; } /** * @return string */ public function asBCvalue() { $n = new BigInteger($this->n); $e = new BigInteger('1' . str_repeat('0', $this->e)); list($q) = $n->divide($e); return $q->toString(); } /** * @return int */ public function getE() { return $this->e; } /** * @return int */ public function getN() { return $this->n; } }