This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php /** @noinspection PhpUndefinedMethodInspection PhpUnused */ | |
/*************************************************************************************************************************************************************************** | |
* Разработчик Хакимов Александр https://github.com/hackimov * | |
* Данный класс занимается получением данных из подписи формата pkcs7 ГНК РУз. * | |
* Подпись расшифровывается с помощью phpseclib из X509 вытаскивается BER формат далее декодируется через ASN1 * | |
* Существует ещё дофига OID политик, можно их дополнить в маппинге но я использовал только самые нужные. * | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
// Задача 1 | |
$bmw = array( | |
"model" => "x5", | |
"speed" => 120, | |
"doors" => 5, | |
"year" => "2006" | |
); | |
$toyota = array( |
NewerOlder