zoukankan      html  css  js  c++  java
  • CuteEditor破解注册文件代码

    //网络上搜集的。直接使用VS2005新建一个应用程序项目,然后复制本代码到FORM的CS代码文件中。再运行就可以得到一个C盘下的"c://cuteeditor.lic"文件,上传到你的站点下的BIN文件夹下覆盖掉原来的cuteeditor.lic文件就好。

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    using System.Security.Cryptography;
    using System.IO;

    namespace WindowsApplication1
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }

            private void Form1_Load(object sender, EventArgs e)
            {
                System.Security.Cryptography.DESCryptoServiceProvider des = new System.Security.Cryptography.DESCryptoServiceProvider();
                des.IV = new byte[] { 70, 0x35, 50, 0x42, 0x31, 0x38, 0x36, 70 };
                des.Key = new byte[] { 70, 0x35, 50, 0x42, 0x31, 0x38, 0x36, 70 };
                using (FileStream fs = new FileStream("c://cuteeditor.lic", FileMode.Create, FileAccess.Write, FileShare.None))
                {
                    using (CryptoStream cs = new CryptoStream(fs, des.CreateEncryptor(), CryptoStreamMode.Write))
                    {
                        using (StreamWriter sw = new StreamWriter(cs))
                        {
                            sw.Write("None;zh-cn;None;8H489467LS631834L;CuteEditor.Editor for asp.net is licensed.;1.6;5;lvmiaomu.com;125.76.229.233;09/09/2099");
                        }
                    }
                    Console.ReadLine();
                } 

            }
        }
    }

  • 相关阅读:
    Salesforce和SAP Netweaver里数据库表的元数据设计
    Salesforce平台支持多租户Multi tenant的核心设计思路
    S/4HANA生产订单增强WORKORDER_UPDATE方法BEFORE_UPDATE参数分析
    S/4HANA生产订单的标准状态和透明工厂原型状态的映射
    1048. Find Coins (25)
    1101. Quick Sort (25)
    1009. Product of Polynomials (25)
    pta 奇数值结点链表&&单链表结点删除
    1007. Maximum Subsequence Sum (25)
    1006. Sign In and Sign Out (25)
  • 原文地址:https://www.cnblogs.com/xqf222/p/3306825.html
Copyright © 2011-2022 走看看