backup
/
src
/
JetBackup
/
3rdparty
/
phpseclib3
/
Crypt
/
EC
/
Formats
/
Signature
Last commit date
.htaccess
1 year ago
ASN1.php
1 year ago
IEEE.php
1 year ago
Raw.php
1 year ago
SSH2.php
1 year ago
index.html
1 year ago
web.config
1 year ago
Raw.php
28 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Raw EC Signature Handler |
| 5 | * |
| 6 | * PHP version 5 |
| 7 | * |
| 8 | * @author Jim Wigginton <terrafrost@php.net> |
| 9 | * @copyright 2016 Jim Wigginton |
| 10 | * @license http://www.opensource.org/licenses/mit-license.html MIT License |
| 11 | * @link http://phpseclib.sourceforge.net |
| 12 | */ |
| 13 | |
| 14 | declare(strict_types=1); |
| 15 | |
| 16 | namespace phpseclib3\Crypt\EC\Formats\Signature; |
| 17 | |
| 18 | use phpseclib3\Crypt\Common\Formats\Signature\Raw as Progenitor; |
| 19 | |
| 20 | /** |
| 21 | * Raw DSA Signature Handler |
| 22 | * |
| 23 | * @author Jim Wigginton <terrafrost@php.net> |
| 24 | */ |
| 25 | abstract class Raw extends Progenitor |
| 26 | { |
| 27 | } |
| 28 |