Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); /** * Finite Field Integer Base Class * * PHP version ..
Decoded Output download
<?php
declare(strict_types=1);
/**
* Finite Field Integer Base Class
*
* PHP version 5 and 7
*
* @author Jim Wigginton <[email protected]>
* @copyright 2017 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
namespace phpseclib3\Math\Common\FiniteField;
/**
* Finite Field Integer
*
* @author Jim Wigginton <[email protected]>
*/
abstract class Integer implements \JsonSerializable
{
/**
* JSON Serialize
*
* Will be called, automatically, when json_encode() is called on a BigInteger object.
*
* PHP Serialize isn't supported because unserializing would require the factory be
* serialized as well and that just sounds like too much
*
* @return array{hex: string}
*/
#[\ReturnTypeWillChange]
public function jsonSerialize(): array
{
return ['hex' => $this->toHex(true)];
}
/**
* Converts an Integer to a hex string (eg. base-16).
*/
abstract public function toHex(): string;
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
/**
* Finite Field Integer Base Class
*
* PHP version 5 and 7
*
* @author Jim Wigginton <[email protected]>
* @copyright 2017 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
namespace phpseclib3\Math\Common\FiniteField;
/**
* Finite Field Integer
*
* @author Jim Wigginton <[email protected]>
*/
abstract class Integer implements \JsonSerializable
{
/**
* JSON Serialize
*
* Will be called, automatically, when json_encode() is called on a BigInteger object.
*
* PHP Serialize isn't supported because unserializing would require the factory be
* serialized as well and that just sounds like too much
*
* @return array{hex: string}
*/
#[\ReturnTypeWillChange]
public function jsonSerialize(): array
{
return ['hex' => $this->toHex(true)];
}
/**
* Converts an Integer to a hex string (eg. base-16).
*/
abstract public function toHex(): string;
}
Function Calls
None |
Stats
MD5 | 644af22485e4a28d7328478dc7f650a0 |
Eval Count | 0 |
Decode Time | 71 ms |