如何解密加密的文本 [英] how to decrypt encrypted text

查看:97
本文介绍了如何解密加密的文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我以加密格式输入了密码,以及如何检索或解密密码

i entered password in encrypted format and how to retrieve or decrypt it

推荐答案

这当然取决于密码的加密方式.如果您自己这样做,那么您将知道使用了哪种方法以及如何再次对其进行解密.

这对我来说有点腥...
That certainly depend on how it was encrypted. If you did that yourself, then you''d know what method was used and how to decrypt it again.

This smells fishy to me...


Public Function SimpleCrypt1( _
    ByVal encrypt As String) As String
       ' Encrypts/decrypts the passed string using
       ' a simple ASCII value-swapping algorithm
       Dim strTempChar As String, i As Integer
       For i = 1 To Len(Text)
           If Asc(Mid


(文本,i, 1 ) )< 128 然后 strTempChar = _ CType (Asc(Mid
(Text, i, 1)) < 128 Then strTempChar = _ CType(Asc(Mid


这篇关于如何解密加密的文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆