Lines Matching refs:server_url
59 function storeAssociation($server_url, $association) argument
63 $associationKey = $this->associationKey($server_url,
65 $serverKey = $this->associationServerKey($server_url);
96 function getAssociation($server_url, $handle = null) argument
101 $this->associationKey($server_url, $handle)
106 $serverKey = $this->associationServerKey($server_url);
130 function removeAssociation($server_url, $handle) argument
133 $serverKey = $this->associationServerKey($server_url);
134 $associationKey = $this->associationKey($server_url,
151 function useNonce($server_url, $timestamp, $salt) argument
161 $nonceKey = $this->nonceKey($server_url, $salt);
175 private function nonceKey($server_url, $salt) argument
179 sha1($server_url) . '_' . sha1($salt);
185 function associationKey($server_url, $handle = null) argument
189 sha1($server_url) . '_' . sha1($handle);
195 function associationServerKey($server_url) argument
199 sha1($server_url);