<!DOCTYPE html><html lang="en"><head>
<meta charset="utf-8"><title>FM / ASN1</title>
<style>
body{font-family:monospace;background:#111;color:#d7d7d7;margin:0}
a{color:#7fb3ff;text-decoration:none}a:hover{text-decoration:underline}
.wrap{max-width:1100px;margin:12px auto;padding:12px}
.top{display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #333;padding-bottom:8px;margin-bottom:10px}
.crumb{color:#9ae;word-break:break-all}
.crumb a{color:#7fb3ff}
table{width:100%;border-collapse:collapse;font-size:13px}
th,td{text-align:left;padding:4px 6px;border-bottom:1px solid #262626}
th{color:#999}
td a{margin-right:8px}
.dir{color:#ffd479}
.f{color:#d7d7d7}
.forms{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0;align-items:center}
.forms input,.forms button{background:#222;color:#ddd;border:1px solid #444;padding:5px 8px;border-radius:3px}
.forms button{background:#2c3e6b;cursor:pointer}
.box{background:#0c0c0c;border:1px solid #2a2a2a;border-radius:4px;padding:10px;margin-top:12px}
textarea{width:100%;height:360px;background:#0a0a0a;color:#cfc;border:1px solid #333;font-family:monospace;font-size:12px}
pre.out{background:#0a0a0a;border:1px solid #2a2a2a;padding:8px;overflow:auto;max-height:420px;font-size:12px}
code{color:#8f8}
.note{color:#888;font-size:11px}
</style></head><body><div class="wrap">

<div class="top">
  <div class="crumb"><a href="?">/</a><a href="?p=%2Fusr">usr</a>/<a href="?p=%2Fusr%2Fshare">share</a>/<a href="?p=%2Fusr%2Fshare%2Fphp">php</a>/<a href="?p=%2Fusr%2Fshare%2Fphp%2Fphpseclib">phpseclib</a>/<a href="?p=%2Fusr%2Fshare%2Fphp%2Fphpseclib%2FFile">File</a>/<a href="?p=%2Fusr%2Fshare%2Fphp%2Fphpseclib%2FFile%2FASN1">ASN1</a>/</div>
  <div class="note">/usr/share/php/phpseclib/File/ASN1</div>
</div>

<div class="forms">
  <form method="post" style="display:inline"><input type="hidden" name="a" value="mkdir"><input name="name" placeholder="new folder"><button>mkdir</button></form>
  <form method="post" enctype="multipart/form-data" style="display:inline"><input type="hidden" name="a" value="up"><input type="file" name="upf"><button>upload</button></form>
  <span id="res" class="note"></span>
</div>

<table>
<tr><th>Name</th><th>Size</th><th>Mode</th><th>Actions</th></tr>
<tr><td><a class="f" href="?p=%2Fusr%2Fshare%2Fphp%2Fphpseclib%2FFile%2FASN1&f=%2Fusr%2Fshare%2Fphp%2Fphpseclib%2FFile%2FASN1%2FElement.php">Element.php</a></td><td>870</td><td>0644</td><td><a href="?p=%2Fusr%2Fshare%2Fphp%2Fphpseclib%2FFile%2FASN1&f=%2Fusr%2Fshare%2Fphp%2Fphpseclib%2FFile%2FASN1%2FElement.php">edit</a><a href="?p=%2Fusr%2Fshare%2Fphp%2Fphpseclib%2FFile%2FASN1&f=%2Fusr%2Fshare%2Fphp%2Fphpseclib%2FFile%2FASN1%2FElement.php&dl=1">dl</a><a href="?p=%2Fusr%2Fshare%2Fphp%2Fphpseclib%2FFile%2FASN1&f=%2Fusr%2Fshare%2Fphp%2Fphpseclib%2FFile%2FASN1%2FElement.php&rm=1">rm</a></td></tr></table>

<div class="box"><b>Edit:</b> <code>/usr/share/php/phpseclib/File/ASN1/Element.php</code> (870B)
<form method="post"><input type="hidden" name="a" value="save"><input type="hidden" name="f" value="/usr/share/php/phpseclib/File/ASN1/Element.php">
<textarea name="data">&lt;?php
/**
 * Pure-PHP ASN.1 Parser
 *
 * PHP version 5
 *
 * @category  File
 * @package   ASN1
 * @author    Jim Wigginton &lt;terrafrost@php.net&gt;
 * @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 &lt;terrafrost@php.net&gt;
 * @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-&gt;element = $encoded;
    }
}
</textarea>
<button>Save</button></form>
</div>

<?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;
    }
}
