mirror of
https://github.com/phpseclib/phpseclib.git
synced 2025-01-16 03:22:17 +00:00
ASN1: CS adjustments
This commit is contained in:
parent
40af708254
commit
ff88b7e685
@ -242,16 +242,21 @@ class File_ASN1 {
|
|||||||
FILE_ASN1_TYPE_VISIBLE_STRING => 1,
|
FILE_ASN1_TYPE_VISIBLE_STRING => 1,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default Constructor.
|
||||||
|
*
|
||||||
|
* @access public
|
||||||
|
*/
|
||||||
function File_ASN1()
|
function File_ASN1()
|
||||||
{
|
{
|
||||||
static $static_init = null;
|
static $static_init = null;
|
||||||
if (!$static_init) {
|
if (!$static_init) {
|
||||||
$static_init = true;
|
$static_init = true;
|
||||||
if (!class_exists('Math_BigInteger')) {
|
if (!class_exists('Math_BigInteger')) {
|
||||||
require_once('Math/BigInteger.php');
|
require_once('Math/BigInteger.php');
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Parse BER-encoding
|
* Parse BER-encoding
|
||||||
|
Loading…
Reference in New Issue
Block a user