⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sessionid.cs

📁 一个用C#编写的能实现即时通讯的工具
💻 CS
字号:
#if !CF
using System;
using System.Text;
using System.Collections;
using System.Security.Cryptography;

namespace agsXMPP
{
	/// <summary>
	/// Summary description for SessionId.
	/// </summary>
	public class SessionId
	{
		// Lenght of the Session ID on bytes,
		// 4 bytes equaly 8 chars
		// 16^8 possibilites for the session IDs (4.294.967.296)
		// This should be unique enough
		private static int m_lenght = 4;
	
		public static string CreateNewId()
		{			
			RandomNumberGenerator RNG = RandomNumberGenerator.Create();
			byte[] buf = new byte[m_lenght];
			RNG.GetBytes(buf);
			
			return util.Hash.HexToString(buf);
		}
	}
}
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -