Auth_OpenID_PredisStore::associationKey PHP Method

associationKey() public method

Key is prefixed with $prefix and 'openid_association_' string
public associationKey ( $server_url, $handle = null )
    function associationKey($server_url, $handle = null)
    {
        return $this->prefix . 'openid_association_' . sha1($server_url) . '_' . sha1($handle);
    }