1
0
mirror of https://github.com/danog/tgseclib.git synced 2024-12-04 10:38:19 +01:00
tgseclib/phpseclib/Math/Common/FiniteField/Integer.php
2018-11-19 12:39:21 -06:00

26 lines
475 B
PHP

<?php
/**
* Finite Field Integer Base Class
*
* PHP version 5 and 7
*
* @category Math
* @package BigInteger
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2017 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
namespace phpseclib\Math\Common\FiniteField;
/**
* Finite Field Integer
*
* @package Math
* @author Jim Wigginton <terrafrost@php.net>
* @access public
*/
abstract class Integer
{
}