Jose\KeyConverter\ECKey::loadPKCS8 PHP Метод

loadPKCS8() приватный Метод

private loadPKCS8 ( array $children ) : array
$children array
Результат array
    private function loadPKCS8(array $children)
    {
        $binary = hex2bin($children[2]->getContent());
        $asnObject = Object::fromBinary($binary);
        Assertion::isInstanceOf($asnObject, Sequence::class);
        return $asnObject->getChildren();
    }