sqrlexample\ExampleStatefulStorage::unlockIdentityKey PHP Метод

unlockIdentityKey() публичный Метод

public unlockIdentityKey ( $key )
    public function unlockIdentityKey($key)
    {
        $sql = 'UPDATE sqrl_pubkey SET disabled = 0 WHERE public_key = ?';
        $stmt = $this->conn->prepare($sql);
        $stmt->execute(array($key));
    }