mirror of
https://github.com/danog/tgseclib.git
synced 2024-12-02 17:48:00 +01:00
50 lines
959 B
PHP
50 lines
959 B
PHP
<?php
|
|
|
|
/**
|
|
* ASN.1 Raw Element
|
|
*
|
|
* PHP version 5
|
|
*
|
|
* @category File
|
|
* @package ASN1
|
|
* @author Jim Wigginton <terrafrost@php.net>
|
|
* @copyright 2012 Jim Wigginton
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
* @link http://phpseclib.sourceforge.net
|
|
*/
|
|
|
|
namespace phpseclib\File\ASN1;
|
|
|
|
/**
|
|
* ASN.1 Raw Element
|
|
*
|
|
* An ASN.1 ANY mapping will return an ASN1\Element object. Use of this object
|
|
* will also bypass the normal encoding rules in ASN1::encodeDER()
|
|
*
|
|
* @package ASN1
|
|
* @author Jim Wigginton <terrafrost@php.net>
|
|
* @access public
|
|
*/
|
|
class Element
|
|
{
|
|
/**
|
|
* Raw element value
|
|
*
|
|
* @var string
|
|
* @access private
|
|
*/
|
|
public $element;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param string $encoded
|
|
* @return \phpseclib\File\ASN1\Element
|
|
* @access public
|
|
*/
|
|
public function __construct($encoded)
|
|
{
|
|
$this->element = $encoded;
|
|
}
|
|
}
|