迅雷
thunder:// + AAwww.baidu.comZZ
thunder://QUFodHRwOi8vd3d3LmJhaWR1LmNvbVpa
快车
flashget:// + [FLASHGET]http://www.baidu.com[FLASHGET]
flashget://W0ZMQVNIR0VUXWh0dHA6Ly93d3cuYmFpZHUuY29tW0ZMQVNIR0VUXQ==
腾讯
qqdl:// + http://www.baidu.com
qqdl://aHR0cDovL3d3dy5iYWlkdS5jb20=
RayFile
fs2you:// + http://www.baidu.com
fs2you://aHR0cDovL3d3dy5iYWlkdS5jb20=
转完一切OK! 写个WEB版的和Form版的。。。
超级简单的。。。。
private void button1_Click(object sender, EventArgs e)
{
byte[] bytes = Encoding.Default.GetBytes(UrlTextBox.Text);
string str = Convert.ToBase64String(bytes);
Results_TextBox.Text = str;
}
private void button2_Click(object sender, EventArgs e)
{
byte[] bytes = Convert.FromBase64String(UrlTextBox.Text);
Results_TextBox.Text = Encoding.Default.GetString(bytes);
}
MD5加密
using System.Security;
using System.Security.Cryptography;
MD5 md5=new MD5CryptoServiceProvider();
byte[] bt=Encoding.Default.GetBytes(“待加密字符串”);//将待加密字符转为 字节型数组
byte[] resualt=md5.ComputeHash(bt);//将字节数组转为加密的字节数组
string pwds = BitConverter.ToString(resualt).Replace(“-“,””);//将数字转为string 型去掉内部的无关字符
做了两个多小时 终于做好了。。
暂定名 HYURL…
支持 迅雷链,快车链,旋风链,RayFile转换。。。。
下载地址: 115网盘负载 Rayfile负载 HYURL.rar HYURL10.05.23.rar
使用方法:在下载的网页连接上单击右键 属性 复制下地址 里面的东西
一般:
迅雷以 thunder:// 开头
快车以 flashget://开头
旋风以 qqdl:// 开头
Rayfile以 fs2you://开头
软件基于 Microsoft .NET Framework V2.0 所以部分机器Windows XP SP2以前的系统需要下载安装系统补丁。。
Microsoft .NET Framework V2.0.50727 Redistributable Package (x86)
下载地址:http://www.duote.com/soft/4039.html
更新:
2010年5月23日 增加MD5加密。。。