We are developing an agent app that requires authentication. We are hoping to use agents' existing credentials.
According to ICM document, the password in t_Person table is the MD5 hash of the actual password.
What we saw in the table field is a 24 char string preceded by {enc:1} (e.g. {enc:1}k/cafH/ZfQSVkfbZdvHQKA==). MD5 is a 128 bit value usually represented by a 32 chars in hex. What's the extra conversion/mapping needed to match them up?