摘要: using System;using System.Text;using System.Collections.Generic;using System.Security.Cryptography;namespace Utils{ public class Rnd { [Flags] public enum CharType { None = 0, Numbers = 1, LowerLetter = 2, UpperLetter = 4, ... 阅读全文
posted @ 2013-01-25 15:29 beikx 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 网上找到的qq协议TEA加密和解密说明如下: 也有很多源代码,但是感觉上代码比较复杂,不容易看。我用C#重写了下。 阅读全文
posted @ 2009-11-08 01:00 beikx 阅读(1490) 评论(1) 推荐(1) 编辑
摘要: 最近在看《自己动手编写操作系统》一书。发现用如下代码初始化描述符: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->xoreax,... 阅读全文
posted @ 2009-01-01 21:28 beikx 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 一个项目需要在WinForm中编辑html,然后显示页面。在编辑过程中页面分成顶部和底部内容部分。顶部内容不可以编辑。所以我定义了一个层包含这部分内容,这样可以方便的在cs中利用正则删掉和添加这部分内容。我定义了如下层: 利用Css设置这部分样式: #___Subject { col... 阅读全文
posted @ 2009-01-01 21:16 beikx 阅读(186) 评论(0) 推荐(0) 编辑