public function setAuthInfo($pw = null) { if ($pw === null) { $pw = Random::auth(12); } $this->set('domain:authInfo/domain:pw', $pw); }
protected function generateClientTransactionId() { return Random::id(64, $this->username); }
public function changeAuthInfo($pw = null) { if ($pw === null) { $pw = Random::auth(12); } $this->set('domain:chg/domain:authInfo/domain:pw', $pw); return $pw; }
public function appendAuthInfo($path, $pw = null) { if ($pw === null) { $pw = Random::auth(12); } $this->set($path, $pw); return $pw; }