芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/status.pulsehost.co.uk/vendor/web-token/jwt-library/Core/Util/Ecc/Math.php
isEqualTo($other); } public static function add(BigInteger $augend, BigInteger $addend): BigInteger { return $augend->plus($addend); } public static function toString(BigInteger $value): string { return $value->toBase(10); } public static function inverseMod(BigInteger $a, BigInteger $m): BigInteger { return CoreBigInteger::createFromBigInteger($a)->modInverse(CoreBigInteger::createFromBigInteger($m))->get(); } public static function baseConvert(string $number, int $from, int $to): string { return BigInteger::fromBase($number, $from)->toBase($to); } }