xref: /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/HoldInstructionCode.php (revision 927933f55f286c8bea68959a13975cbcb59eb8ee)
1*927933f5SAndreas Gohr<?php
2*927933f5SAndreas Gohr
3*927933f5SAndreas Gohr/**
4*927933f5SAndreas Gohr * HoldInstructionCode
5*927933f5SAndreas Gohr *
6*927933f5SAndreas Gohr * PHP version 5
7*927933f5SAndreas Gohr *
8*927933f5SAndreas Gohr * @author    Jim Wigginton <terrafrost@php.net>
9*927933f5SAndreas Gohr * @copyright 2016 Jim Wigginton
10*927933f5SAndreas Gohr * @license   http://www.opensource.org/licenses/mit-license.html  MIT License
11*927933f5SAndreas Gohr * @link      http://phpseclib.sourceforge.net
12*927933f5SAndreas Gohr */
13*927933f5SAndreas Gohr
14*927933f5SAndreas Gohrnamespace phpseclib3\File\ASN1\Maps;
15*927933f5SAndreas Gohr
16*927933f5SAndreas Gohruse phpseclib3\File\ASN1;
17*927933f5SAndreas Gohr
18*927933f5SAndreas Gohr/**
19*927933f5SAndreas Gohr * HoldInstructionCode
20*927933f5SAndreas Gohr *
21*927933f5SAndreas Gohr * @author  Jim Wigginton <terrafrost@php.net>
22*927933f5SAndreas Gohr */
23*927933f5SAndreas Gohrabstract class HoldInstructionCode
24*927933f5SAndreas Gohr{
25*927933f5SAndreas Gohr    const MAP = ['type' => ASN1::TYPE_OBJECT_IDENTIFIER];
26*927933f5SAndreas Gohr}
27