1
0
mirror of https://github.com/danog/tgseclib.git synced 2024-12-03 10:07:47 +01:00
tgseclib/phpseclib/File/ASN1/Maps/Pentanomial.php
2019-12-18 14:00:20 +01:00

37 lines
789 B
PHP

<?php
/**
* Pentanomial
*
* PHP version 5
*
* @category File
* @package ASN1
* @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 tgseclib\File\ASN1\Maps;
use tgseclib\File\ASN1;
/**
* Pentanomial
*
* @package ASN1
* @author Jim Wigginton <terrafrost@php.net>
* @access public
*/
abstract class Pentanomial
{
const MAP = [
'type' => ASN1::TYPE_SEQUENCE,
'children' => [
'k1' => ['type' => ASN1::TYPE_INTEGER], // k1 > 0
'k2' => ['type' => ASN1::TYPE_INTEGER], // k2 > k1
'k3' => ['type' => ASN1::TYPE_INTEGER], // k3 > h2
]
];
}