Horde_Oauth_Request::_generateNonce PHP Method

_generateNonce() protected static method

Generate a nonce.
protected static _generateNonce ( )
    protected static function _generateNonce()
    {
        $mt = microtime();
        $rand = mt_rand();
        return hash('md5', microtime() . mt_rand());
    }