Bitpay\PrivateKey::getPublicKey PHP 메소드

getPublicKey() 공개 메소드

public getPublicKey ( ) : PublicKey
리턴 PublicKey
    public function getPublicKey()
    {
        if (null === $this->publicKey) {
            $this->publicKey = new PublicKey();
            $this->publicKey->setPrivateKey($this);
            $this->publicKey->generate();
        }
        return $this->publicKey;
    }