Jose\KeyConverter\ECKey::verifyVersion PHP Method

verifyVersion() private method

private verifyVersion ( FG\ASN1\Object $children )
$children FG\ASN1\Object
    private function verifyVersion(Object $children)
    {
        Assertion::isInstanceOf($children, Integer::class, 'Unable to load the key');
        Assertion::eq(1, $children->getContent(), 'Unable to load the key');
    }