FiniteField
1 year ago
.htaccess
1 year ago
FiniteField.php
1 year ago
index.html
1 year ago
web.config
1 year ago
FiniteField.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | /** |
| 6 | * Finite Fields Base Class |
| 7 | * |
| 8 | * PHP version 5 and 7 |
| 9 | * |
| 10 | * @author Jim Wigginton <terrafrost@php.net> |
| 11 | * @copyright 2017 Jim Wigginton |
| 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License |
| 13 | */ |
| 14 | |
| 15 | namespace phpseclib3\Math\Common; |
| 16 | |
| 17 | /** |
| 18 | * Finite Fields |
| 19 | * |
| 20 | * @author Jim Wigginton <terrafrost@php.net> |
| 21 | */ |
| 22 | abstract class FiniteField |
| 23 | { |
| 24 | } |
| 25 |