摘要: Public Function Encrypt(strPWtoEncrypt As String) As String Dim strPword As String Dim bytCount As Byte Dim intTemp As Integer For bytCount = 1 To Len(strPWtoEncrypt) intTemp = Asc(Mid(strPWtoEncrypt, bytCount, 1)) If bytCount Mod 2 = 0 Then intTemp = intTemp - bytEncrypt Else intTemp = intTemp + by 阅读全文
posted @ 2011-07-16 14:46 Black Bean 阅读(235) 评论(0) 推荐(0) 编辑