| Server IP : 46.105.57.169 / Your IP : 216.73.216.144 Web Server : Apache System : Linux webd003.cluster120.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : maitricfuz ( 93378) PHP Version : 8.4.10 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/maitricfuz/www/maitric/libraries/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/ |
Upload File : |
<?php
/**
* Time
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2016 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
namespace phpseclib3\File\ASN1\Maps;
use phpseclib3\File\ASN1;
/**
* Time
*
* @author Jim Wigginton <terrafrost@php.net>
*/
abstract class Time
{
const MAP = [
'type' => ASN1::TYPE_CHOICE,
'children' => [
'utcTime' => ['type' => ASN1::TYPE_UTC_TIME],
'generalTime' => ['type' => ASN1::TYPE_GENERALIZED_TIME]
]
];
}