lone_rider15
Registered User.
- Local time
- Tomorrow, 04:03
- Joined
- Nov 6, 2016
- Messages
- 32
Hi,
I have a function for password hashing. I took the function from https://access-programmers.co.uk/forums/showthread.php?t=172530
It gives me "543211154543211139543211153543211153543211157543211149543211152543211142" for "Password".
Looking for solution: Decryption
How can I get "Password" for "543211154543211139543211153543211153543211157543211149543211152543211142"
Thanks in advance for looking into this.
I have a function for password hashing. I took the function from https://access-programmers.co.uk/forums/showthread.php?t=172530
Code:
Public Const Salt As Long = 543211234
Public Function Encrypt(strIn As String) As String
Dim strChr As String
Dim i As Integer
For i = 1 To Len(strIn)
strChr = strChr & CStr(Asc(Mid(strIn, i, 1)) Xor Salt)
Next i
Encrypt = strChr
End Function
It gives me "543211154543211139543211153543211153543211157543211149543211152543211142" for "Password".
Looking for solution: Decryption
How can I get "Password" for "543211154543211139543211153543211153543211157543211149543211152543211142"
Thanks in advance for looking into this.