mirror of
https://github.com/danog/tgseclib.git
synced 2024-12-04 10:38:19 +01:00
20 lines
399 B
PHP
20 lines
399 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* nistt571
|
||
|
*
|
||
|
* PHP version 5 and 7
|
||
|
*
|
||
|
* @category Crypt
|
||
|
* @package ECDSA
|
||
|
* @author Jim Wigginton <terrafrost@php.net>
|
||
|
* @copyright 2017 Jim Wigginton
|
||
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||
|
* @link http://pear.php.net/package/Math_BigInteger
|
||
|
*/
|
||
|
|
||
|
namespace phpseclib\Crypt\ECDSA\Curves;
|
||
|
|
||
|
final class nistt571 extends sect571k1
|
||
|
{
|
||
|
}
|