PluginProbe
Import WP – CSV & XML Import Export for WordPress / 2.15.0
Import WP – CSV & XML Import Export for WordPress v2.15.0
2.15.1 2.15.0 2.14.24 2.14.23 2.7.0 2.7.1 2.7.10 2.7.11 2.7.12 2.7.13 2.7.14 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.2 2.8.3 2.9.0 2.9.1 All 144 releases
jc-importer / libs / phpseclib / phpseclib / phpseclib / File / ASN1 / Maps / PublicKeyInfo.php

PublicKeyInfo.php in Import WP – CSV & XML Import Export for WordPress 2.15.0, at libs/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/PublicKeyInfo.php

36 lines 813 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * PublicKeyInfo
5 *
6 * PHP version 5
7 *
8 * @author Jim Wigginton <[email protected]>
9 * @copyright 2016 Jim Wigginton
10 * @license http://www.opensource.org/licenses/mit-license.html MIT License
11 * @link http://phpseclib.sourceforge.net
12 */
13
14 namespace phpseclib3\File\ASN1\Maps;
15
16 use phpseclib3\File\ASN1;
17
18 /**
19 * PublicKeyInfo
20 *
21 * this format is not formally defined anywhere but is none-the-less the form you
22 * get when you do "openssl rsa -in private.pem -outform PEM -pubout"
23 *
24 * @author Jim Wigginton <[email protected]>
25 */
26 abstract class PublicKeyInfo
27 {
28 const MAP = [
29 'type' => ASN1::TYPE_SEQUENCE,
30 'children' => [
31 'publicKeyAlgorithm' => AlgorithmIdentifier::MAP,
32 'publicKey' => ['type' => ASN1::TYPE_BIT_STRING]
33 ]
34 ];
35 }
36