mirror of
https://github.com/danog/tgseclib.git
synced 2024-12-03 18:17:49 +01:00
30 lines
583 B
PHP
30 lines
583 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Raw ECDSA Signature Handler
|
||
|
*
|
||
|
* 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
|
||
|
*/
|
||
|
|
||
|
namespace phpseclib\Crypt\ECDSA\Signature;
|
||
|
|
||
|
use phpseclib\Crypt\Common\Signature\Raw as Progenitor;
|
||
|
|
||
|
/**
|
||
|
* Raw DSA Signature Handler
|
||
|
*
|
||
|
* @package ECDSA
|
||
|
* @author Jim Wigginton <terrafrost@php.net>
|
||
|
* @access public
|
||
|
*/
|
||
|
abstract class Raw extends Progenitor
|
||
|
{
|
||
|
}
|