Horde_Token_Base::get PHP Method

get() public method

Return a new signed token.
public get ( string $seed = '' ) : string
$seed string A unique ID to be included in the token.
return string The new token.
    public function get($seed = '')
    {
        $nonce = $this->getNonce();
        return Horde_Url::uriB64Encode($nonce . $this->_hash($nonce . $seed));
    }