且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何编码和解码密码

更新时间:2023-02-23 12:46:03

Base64很简单 - 这就是你不应该使用它的原因!

https://msdn.microsoft.com/en-us/library/system.convert.tobase64string(v = vs.110)的.aspx [ ^ ]

https:/ /msdn.microsoft.com/en-us/library/system.convert.frombase64string(v=vs.110).aspx [ ^ ]



这不是一种加密方法,它是一种翻译方法。



但是改变的是你试图对它们进行逆向工程以获得原始版本密码 - 因为这些密码不会直接从Base64转换回原始。

我们无论如何,形状或形式都没有帮助。
Base64 is trivial - which is why you should not be using it!
https://msdn.microsoft.com/en-us/library/system.convert.tobase64string(v=vs.110).aspx[^]
https://msdn.microsoft.com/en-us/library/system.convert.frombase64string(v=vs.110).aspx[^]

It is not an encryption method, it is a translation method.

But the changes are that you are trying to reverse engineer these to obtain the original passwords - since these do not convert from Base64 directly back to your "original".
And we don't help with that in any way, shape, or form.