Horde_Oauth_Request::_generateNonce PHP Méthode

_generateNonce() protected static méthode

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