首页 相关文章 MD5不可逆加密算法的ASP实现实例

MD5不可逆加密算法的ASP实现实例

<%
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
...[ 查看全文 ]

2016-01-29 标签:

MD5不可逆加密算法的ASP实现实例的相关文章

手机页面
收藏网站 回到头部