move Zotlabs\Zot\Verify to Zotlabs\Lib\Verify as part of the z6 re-org

This commit is contained in:
zotlabs
2018-02-21 20:59:30 -08:00
parent fef3155e6a
commit 2d69b419ff
5 changed files with 7 additions and 7 deletions

View File

@@ -42,7 +42,7 @@ class Owa extends \Zotlabs\Web\Controller {
logger('OWA success: ' . $hubloc['hubloc_addr'],LOGGER_DATA);
$ret['success'] = true;
$token = random_string(32);
\Zotlabs\Zot\Verify::create('owt',0,$token,$hubloc['hubloc_addr']);
\Zotlabs\Lib\Verify::create('owt',0,$token,$hubloc['hubloc_addr']);
$result = '';
openssl_public_encrypt($token,$result,$hubloc['xchan_pubkey']);
$ret['encrypted_token'] = base64url_encode($result);