JMongi
Active member
- Local time
- Today, 18:42
- Joined
- Jan 6, 2021
- Messages
- 802
Does this particular function need updated to the encrypted version also? Meaning i need to pass the decrypted RC4_Key to GetRC4Key?
or this section of code:
Since it's in single quotes, I'm not sure. It's the RC4 function call so I assumed it need to the decrypted key but I'm just dotting all my i's and t's.
Code:
Public Function GetRC4Key()
GetRC4Key = RC4_Key
End Function
or this section of code:
Code:
'CR v5.2 05/01/2020 - corrected date code to fix error
CurrentDb.Execute "UPDATE tblUsers SET PWD = RC4(strPassword,'RC4_Key'), PWDDate = #" & Format(Date, "mm/dd/yyyy") & "#" & _
" WHERE UserName = '" & GetUserName() & "';"
Since it's in single quotes, I'm not sure. It's the RC4 function call so I assumed it need to the decrypted key but I'm just dotting all my i's and t's.