摘要: Function cipher(stext As String) '密码加密程序 Const min_asc = 32 Const max_asc = 126 Const num_asc = max_asc - min_asc + 1 Dim offset As Long Dim strlen As Integer Dim i As Integer Dim ch As Integer Dim ptext As String offset = 123 Rnd (-1) Randomize (offset) strlen... 阅读全文
posted @ 2012-11-07 12:02 Let's go 阅读(590) 评论(0) 推荐(0) 编辑