MD5加密问题

来源:百度知道 编辑:UC知道 时间:2024/05/21 14:11:17
我想把数据库中的密码全变成”*”的样式,请问如何实现
当然可以了,我看过!我看别人的ACESS数据库里的密码字段里,密码全是"*"表示的

这个和md5好像没关系吧,在access里面,打开某个表的设计视图,选中某个文本列,输入掩码里面选择密码*就可以了

以上。
尝试的老狼

只要在数据表结构修改里面,!!
数据表的(设计视图)
下面的输入掩码 里面输入*就可以了!!!
(输入掩码)
但是没什么作用的!别人也可以看见!
还是用md5 吧

md5加密的都是乱码了,不比星号更强啊!

可以吗 没见过

我也想知道

asp -MD5代码
-----------
<-%
Private Const BITS_TO_A_BYTE = 8
Private Const BYTES_TO_A_WORD = 4
Private Const BITS_TO_A_WORD = 32

Private m_lOnBits(30)
Private m_l2Power(30)

Private Function LShift(lValue, iShiftBits)
If iShiftBits = 0 Then
LShift = lValue
Exit Function
ElseIf iShiftBits = 31 Then
If lValue And 1 Then
LShift = &H80000000
Else
LShift = 0
End If
Exit Function
ElseIf iShiftBits < 0 Or iShiftBits > 31 Then
Err.Raise 6
End If

If (lValue And m_l2Power(31 - iShiftBits)) Then