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

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

private getD ( FG\ASN1\Object $children ) : string
$children FG\ASN1\Object
Результат string
    private function getD(Object $children)
    {
        Assertion::isInstanceOf($children, '\\FG\\ASN1\\Universal\\OctetString', 'Unable to load the key');
        return $children->getContent();
    }