1
0
mirror of https://github.com/danog/tgseclib.git synced 2024-12-12 17:17:34 +01:00
tgseclib/phpseclib/Crypt/DSA/Signature/ASN1.php

69 lines
1.5 KiB
PHP
Raw Normal View History

2016-12-23 17:02:07 +01:00
<?php
/**
2018-10-25 03:00:37 +02:00
* ASN1 Signature Handler
2016-12-23 17:02:07 +01:00
*
* PHP version 5
*
* Handles signatures in the format described in
* https://tools.ietf.org/html/rfc3279#section-2.2.2
*
* @category Crypt
* @package Common
* @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\DSA\Signature;
use phpseclib\Math\BigInteger;
2018-10-25 03:00:37 +02:00
use phpseclib\File\ASN1 as Encoder;
2016-12-23 17:02:07 +01:00
use phpseclib\File\ASN1\Maps;
/**
2018-10-25 03:00:37 +02:00
* ASN1 Signature Handler
2016-12-23 17:02:07 +01:00
*
* @package Common
* @author Jim Wigginton <terrafrost@php.net>
* @access public
*/
2018-10-25 03:00:37 +02:00
abstract class ASN1
2016-12-23 17:02:07 +01:00
{
/**
* Loads a signature
*
* @access public
2017-11-05 21:35:27 +01:00
* @param string $sig
2017-08-03 09:12:07 +02:00
* @return array|bool
2016-12-23 17:02:07 +01:00
*/
public static function load($sig)
{
if (!is_string($sig)) {
return false;
}
2018-10-25 03:00:37 +02:00
$decoded = Encoder::decodeBER($sig);
2016-12-23 17:02:07 +01:00
if (empty($decoded)) {
return false;
}
2018-10-25 03:00:37 +02:00
$components = Encoder::asn1map($decoded[0], Maps\DssSigValue::MAP);
2016-12-23 17:02:07 +01:00
return $components;
}
/**
* Returns a signature in the appropriate format
*
* @access public
* @param \phpseclib\Math\BigInteger $r
* @param \phpseclib\Math\BigInteger $s
* @return string
*/
public static function save(BigInteger $r, BigInteger $s)
{
return ASN1::encodeDER(compact('r', 's'), Maps\DssSigValue::MAP);
}
}