1
0
mirror of https://github.com/danog/tgseclib.git synced 2025-01-22 05:51:20 +01:00

30 lines
590 B
PHP
Raw Normal View History

2018-10-24 20:00:37 -05:00
<?php
/**
2019-06-27 19:10:40 -05:00
* Raw EC Signature Handler
2018-10-24 20:00:37 -05:00
*
* PHP version 5
*
* @category Crypt
* @package DSA
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
2019-06-27 19:10:40 -05:00
namespace phpseclib\Crypt\EC\Formats\Signature;
2018-10-24 20:00:37 -05:00
2019-06-24 22:44:10 -05:00
use phpseclib\Crypt\Common\Formats\Signature\Raw as Progenitor;
2018-10-24 20:00:37 -05:00
/**
* Raw DSA Signature Handler
*
2019-06-27 19:10:40 -05:00
* @package EC
2018-10-24 20:00:37 -05:00
* @author Jim Wigginton <terrafrost@php.net>
* @access public
*/
abstract class Raw extends Progenitor
{
}