mirror of
https://github.com/danog/tgseclib.git
synced 2024-11-27 12:44:38 +01:00
b4cf10fc94
This reverts commit be5f4ef6b19c82f6c898708cc8e1828b05e3d4e8, reversing
changes made to 638fe6971c
.
48 lines
870 B
PHP
48 lines
870 B
PHP
<?php
|
|
/**
|
|
* Pure-PHP ASN.1 Parser
|
|
*
|
|
* 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 Element
|
|
*
|
|
* Bypass normal encoding rules in phpseclib\File\ASN1::encodeDER()
|
|
*
|
|
* @package ASN1
|
|
* @author Jim Wigginton <terrafrost@php.net>
|
|
* @access public
|
|
*/
|
|
class Element
|
|
{
|
|
/**
|
|
* Raw element value
|
|
*
|
|
* @var string
|
|
* @access private
|
|
*/
|
|
var $element;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param string $encoded
|
|
* @return \phpseclib\File\ASN1\Element
|
|
* @access public
|
|
*/
|
|
function __construct($encoded)
|
|
{
|
|
$this->element = $encoded;
|
|
}
|
|
}
|