mirror of
https://github.com/danog/tgseclib.git
synced 2024-12-11 16:49:41 +01:00
26 lines
453 B
PHP
26 lines
453 B
PHP
<?php
|
|
|
|
/**
|
|
* Finite Fields 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;
|
|
|
|
/**
|
|
* Finite Fields
|
|
*
|
|
* @package Math
|
|
* @author Jim Wigginton <terrafrost@php.net>
|
|
* @access public
|
|
*/
|
|
abstract class FiniteField
|
|
{
|
|
} |