English 中文(简体)
如何将五分之三改为正常案文? [复制]
原标题:How to convert md5 string to normal text? [duplicate]
  • 时间:2012-01-16 10:05:57
  •  标签:
  • php
  • md5

我已把MD5形式的用户密码保存在我的数据库中,现在我想向方便用户发送密码,我是否可以将显示的MD5转换成浅层?

最佳回答
问题回答

you can use this http://www.md5decrypt.org/ or this http://md5.gromweb.com/ it will decrypt your md5 code

“MD5”的想法是单向洗).,因此,一旦通过洗).算法(如果是的话)通过原值,它就算不上。

你可以(可能)建立一个数据库表,对原和MD5数值进行配对,但我猜测,这些数值非常不切实际,并且构成重大安全风险<>。

我在电子邮件中向用户发出密码,你也根本没有密码。

你不能改变MD5的功能,因此,你的唯一选择是产生新的密码,将其发送给用户(最好是在某些安全渠道上)。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...